UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 633 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M20 19v-9h-5.586V4.586L8 11l6.414 6.414V12H18v7zM10.164 6.05 8.75 4.636 2.386 11l6.364 6.364 1.414-1.414L5.214 11z"/> </Svg>); }); Icon.displayName = 'CornerUpLeftDoubleFill'; /** * Remix Icon: Corner Up Left Double Fill * @see {@link https://remixicon.com/icon/corner-up-left-double-fill Remix Icon Docs} */ export const CornerUpLeftDoubleFill = Icon;