@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 568 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M2 20h20v2H2zm2-8h2v7H4zm5 0h2v7H9zm4 0h2v7h-2zm5 0h2v7h-2zM2 7l10-5 10 5v4H2zm10 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/>
</Svg>);
});
Icon.displayName = 'BankFill';
/**
* Remix Icon: Bank Fill
* @see {@link https://remixicon.com/icon/bank-fill Remix Icon Docs}
*/
export const BankFill = Icon;