@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 599 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="M9 18H4V10H9V18ZM7 16V12H6V16H7ZM13 16V8H12V16H13ZM15 18H10V6H15V18ZM19 16V4H18V16H19ZM21 18H16V2H21V18ZM22 22H3V20H22V22Z"/>
</Svg>);
};
Icon.displayName = 'NumbersLine';
/**
* Remix Icon: Numbers Line
* @see {@link https://remixicon.com/icon/numbers-line Remix Icon Docs}
*/
export const NumbersLine = memo(Icon);