UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 545 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M4 19h16v-7h2v8a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-8h2zM14 9v6h-4V9H5l7-7 7 7z"/> </Svg>); }); Icon.displayName = 'Upload2Fill'; /** * Remix Icon: Upload 2 Fill * @see {@link https://remixicon.com/icon/upload-2-fill Remix Icon Docs} */ export const Upload2Fill = Icon;