@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 588 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="M2 4H4V20H2V4ZM6 4H7V20H6V4ZM8 4H10V20H8V4ZM11 4H13V20H11V4ZM14 4H16V20H14V4ZM17 4H18V20H17V4ZM19 4H22V20H19V4Z"/>
</Svg>);
};
Icon.displayName = 'BarcodeLine';
/**
* Remix Icon: Barcode Line
* @see {@link https://remixicon.com/icon/barcode-line Remix Icon Docs}
*/
export const BarcodeLine = memo(Icon);