@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 662 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.24264 17.9967H3V13.754L14.435 2.319C14.8256 1.92848 15.4587 1.92848 15.8492 2.319L18.6777 5.14743C19.0682 5.53795 19.0682 6.17112 18.6777 6.56164L7.24264 17.9967ZM3 19.9967H21V21.9967H3V19.9967Z"/>
</Svg>);
};
Icon.displayName = 'EditFill';
/**
* Remix Icon: Edit Fill
* @see {@link https://remixicon.com/icon/edit-fill Remix Icon Docs}
*/
export const EditFill = memo(Icon);