@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 801 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M5.5 2C4.99568 2 4.57028 2.37554 4.50772 2.87597L3.00772 14.876C3.00258 14.9171 3 14.9585 3 15V21C3 21.5523 3.44772 22 4 22H20C20.5523 22 21 21.5523 21 21V15C21 14.9585 20.9974 14.9171 20.9923 14.876L19.4923 2.87597C19.4297 2.37554 19.0043 2 18.5 2H5.5ZM5 16H19V20H5V16ZM15 17H17V19H15V17ZM13 17H11V19H13V17Z"/>
</Svg>);
};
Icon.displayName = 'HardDrive3Fill';
/**
* Remix Icon: Hard Drive 3 Fill
* @see {@link https://remixicon.com/icon/hard-drive-3-fill Remix Icon Docs}
*/
export const HardDrive3Fill = memo(Icon);