@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 688 B
JavaScript
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.508 2.876A1 1 0 0 1 5.5 2h13a1 1 0 0 1 .992.876l1.5 12Q21 14.938 21 15v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-6a1 1 0 0 1 .008-.124zM6.383 4l-1.25 10h13.734l-1.25-10zM19 16H5v4h14zm-4 1h2v2h-2zm-2 0h-2v2h2z"/>
</Svg>);
});
Icon.displayName = 'HardDrive3Line';
/**
* Remix Icon: Hard Drive 3 Line
* @see {@link https://remixicon.com/icon/hard-drive-3-line Remix Icon Docs}
*/
export const HardDrive3Line = Icon;