UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 685 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="M16.9493 7.44926L11.9995 2.49951L7.05226 7.44678L10.9995 7.44777L10.9995 16.5496L7.05031 16.5496L12 21.4995L16.9498 16.5498L12.9995 16.5497L12.9995 7.44827L16.9493 7.44926Z"/> </Svg>); }; Icon.displayName = 'ExpandVerticalSFill'; /** * Remix Icon: Expand Vertical S Fill * @see {@link https://remixicon.com/icon/expand-vertical-s-fill Remix Icon Docs} */ export const ExpandVerticalSFill = memo(Icon);