@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 672 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="M15.0001 4.99976V10.9998L21.0001 11.0001L21.0001 13.0001L15.0001 12.9998V18.9998L7.99985 12L15.0001 4.99976ZM4.00006 18.9999L4.00006 4.99993H6.00006L6.00006 18.9999H4.00006Z"/>
</Svg>);
};
Icon.displayName = 'ContractLeftFill';
/**
* Remix Icon: Contract Left Fill
* @see {@link https://remixicon.com/icon/contract-left-fill Remix Icon Docs}
*/
export const ContractLeftFill = memo(Icon);