@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 746 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="M4 3H17L20.7071 6.70711C20.8946 6.89464 21 7.149 21 7.41421V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3ZM12 18C13.6569 18 15 16.6569 15 15C15 13.3431 13.6569 12 12 12C10.3431 12 9 13.3431 9 15C9 16.6569 10.3431 18 12 18ZM5 5V9H15V5H5Z"/>
</Svg>);
};
Icon.displayName = 'Save2Fill';
/**
* Remix Icon: Save 2 Fill
* @see {@link https://remixicon.com/icon/save-2-fill Remix Icon Docs}
*/
export const Save2Fill = memo(Icon);