UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 549 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="M18 5 12 11 6 5H18ZM18 19 12 13 6 19H18Z"/> </Svg>); }; Icon.displayName = 'ContractUpDownFill'; /** * Remix Icon: Contract Up Down Fill * @see {@link https://remixicon.com/icon/contract-up-down-fill Remix Icon Docs} */ export const ContractUpDownFill = memo(Icon);