@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 661 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="M7.94037 4.14596L11.4217 10.1759L5.48201 20.4688L2 14.44L7.94037 4.14596ZM10.1161 14.44H22L18.518 20.4688H6.63537L10.1161 14.44ZM14.4589 13.4399L8.51799 3.14502H15.482L21.4229 13.4399H14.4589Z"/>
</Svg>);
};
Icon.displayName = 'DriveFill';
/**
* Remix Icon: Drive Fill
* @see {@link https://remixicon.com/icon/drive-fill Remix Icon Docs}
*/
export const DriveFill = memo(Icon);