@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 818 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="M22.0049 9.99979V19.9998C22.0049 20.5521 21.5572 20.9998 21.0049 20.9998H3.00488C2.4526 20.9998 2.00488 20.5521 2.00488 19.9998V9.99979H22.0049ZM22.0049 7.99979H2.00488V3.99979C2.00488 3.4475 2.4526 2.99979 3.00488 2.99979H21.0049C21.5572 2.99979 22.0049 3.4475 22.0049 3.99979V7.99979ZM15.0049 15.9998V17.9998H19.0049V15.9998H15.0049Z"/>
</Svg>);
};
Icon.displayName = 'BankCardFill';
/**
* Remix Icon: Bank Card Fill
* @see {@link https://remixicon.com/icon/bank-card-fill Remix Icon Docs}
*/
export const BankCardFill = memo(Icon);