@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 730 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 20H22V22H2V20ZM4 12H6V19H4V12ZM9 12H11V19H9V12ZM13 12H15V19H13V12ZM18 12H20V19H18V12ZM2 7L12 2L22 7V11H2V7ZM4 8.23607V9H20V8.23607L12 4.23607L4 8.23607ZM12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7C13 7.55228 12.5523 8 12 8Z"/>
</Svg>);
};
Icon.displayName = 'BankLine';
/**
* Remix Icon: Bank Line
* @see {@link https://remixicon.com/icon/bank-line Remix Icon Docs}
*/
export const BankLine = memo(Icon);