UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 673 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="M12 6c0-1.537.578-2.938 1.528-4H6a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9.083Q18.511 12 18 12a6 6 0 0 1-6-6m0 11a1 1 0 1 1 0 2 1 1 0 0 1 0-2M22 6h-3V2h-2v4h-3l4 4z"/> </Svg>); }); Icon.displayName = 'MobileDownloadFill'; /** * Remix Icon: Mobile Download Fill * @see {@link https://remixicon.com/icon/mobile-download-fill Remix Icon Docs} */ export const MobileDownloadFill = Icon;