@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 581 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const LineChartLine = /* @__PURE__ */ memo(function LineChartLine(_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 3v16h16v2H3V3zm15.293 3.293 1.414 1.414L16 13.414l-3-2.999-4.293 4.292-1.414-1.414L13 7.586l3 2.999z"/>
</Svg>);
});
/**
* Remix Icon: Line Chart Line
* @see {@link https://remixicon.com/icon/line-chart-line Remix Icon Docs}
*/
export { LineChartLine };