@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 683 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="M10.5859 12L2.79297 4.20706L4.20718 2.79285L12.0001 10.5857L19.793 2.79285L21.2072 4.20706L13.4143 12L21.2072 19.7928L19.793 21.2071L12.0001 13.4142L4.20718 21.2071L2.79297 19.7928L10.5859 12Z"/>
</Svg>);
};
Icon.displayName = 'CloseLargeFill';
/**
* Remix Icon: Close Large Fill
* @see {@link https://remixicon.com/icon/close-large-fill Remix Icon Docs}
*/
export const CloseLargeFill = memo(Icon);