UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 661 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="M0.5 12L5.44975 7.05029L5.44876 11H10V13H5.44826L5.44727 16.9473L0.5 12ZM14 13H18.5501L18.55 16.9493L23.5 11.9996L18.5503 7.0498L18.5502 11H14V13Z"/> </Svg>); }; Icon.displayName = 'ExpandHorizontalFill'; /** * Remix Icon: Expand Horizontal Fill * @see {@link https://remixicon.com/icon/expand-horizontal-fill Remix Icon Docs} */ export const ExpandHorizontalFill = memo(Icon);