UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 683 B
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="M3 3H10.5L7.45711 6.04289L10.7071 9.29289L9.29289 10.7071L6.04289 7.45711L3 10.5V3ZM21 21H13.5L16.5429 17.9571L13.2929 14.7071L14.7071 13.2929L17.9571 16.5429L21 13.5V21Z"/> </Svg>); }; Icon.displayName = 'ExpandDiagonal2Fill'; /** * Remix Icon: Expand Diagonal 2 Fill * @see {@link https://remixicon.com/icon/expand-diagonal-2-fill Remix Icon Docs} */ export const ExpandDiagonal2Fill = memo(Icon);