iconoir/packages/iconoir-react-native/src/LabelOutline.tsx

29 lines
670 B
TypeScript
Raw Normal View History

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgLabelOutline(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 17.4V6.6a.6.6 0 01.6-.6h13.079c.2 0 .388.1.5.267l3.6 5.4a.6.6 0 010 .666l-3.6 5.4a.6.6 0 01-.5.267H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgLabelOutline);
export default ForwardRef;