@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 566 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="M5 3v16h16v2H3V3zm14.94 2.94 2.12 2.12L16 14.122l-3-3-3.94 3.94-2.12-2.122L13 6.88l3 3z"/>
</Svg>);
});
Icon.displayName = 'LineChartFill';
/**
* Remix Icon: Line Chart Fill
* @see {@link https://remixicon.com/icon/line-chart-fill Remix Icon Docs}
*/
export const LineChartFill = Icon;