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

31 lines
638 B
TypeScript
Raw Normal View History

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgUpload(
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="M6 20h12M12 16V4m0 0l3.5 3.5M12 4L8.5 7.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgUpload);
export default ForwardRef;