@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 637 B
JavaScript
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 3.107a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-16a1 1 0 0 1 1-1zm-8.811 10.158L5 14.355v4.752h7.218zM19 5.107h-7.219l2.468 14H19zm-9.25 0H5v7.218l5.842-1.03z"/>
</Svg>);
});
Icon.displayName = 'CollageLine';
/**
* Remix Icon: Collage Line
* @see {@link https://remixicon.com/icon/collage-line Remix Icon Docs}
*/
export const CollageLine = Icon;