@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 728 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="M9.24264 18.9967H21V20.9967H3V16.754L12.8995 6.85453L17.1421 11.0972L9.24264 18.9967ZM14.3137 5.44032L16.435 3.319C16.8256 2.92848 17.4587 2.92848 17.8492 3.319L20.6777 6.14743C21.0682 6.53795 21.0682 7.17112 20.6777 7.56164L18.5563 9.68296L14.3137 5.44032Z"/>
</Svg>);
};
Icon.displayName = 'Edit2Fill';
/**
* Remix Icon: Edit 2 Fill
* @see {@link https://remixicon.com/icon/edit-2-fill Remix Icon Docs}
*/
export const Edit2Fill = memo(Icon);