@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 630 B
JavaScript
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="M5 3V19H21V21H3V3H5ZM20.2929 6.29289L21.7071 7.70711L16 13.4142L13 10.415L8.70711 14.7071L7.29289 13.2929L13 7.58579L16 10.585L20.2929 6.29289Z"/>
</Svg>);
};
Icon.displayName = 'LineChartLine';
/**
* Remix Icon: Line Chart Line
* @see {@link https://remixicon.com/icon/line-chart-line Remix Icon Docs}
*/
export const LineChartLine = memo(Icon);