@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 662 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 4V3C9 2.44772 9.44772 2 10 2H14C14.5523 2 15 2.44772 15 3V4H18C18.5523 4 19 4.44772 19 5V21C19 21.5523 18.5523 22 18 22H6C5.44772 22 5 21.5523 5 21V5C5 4.44772 5.44772 4 6 4H9Z"/>
</Svg>);
};
Icon.displayName = 'Battery2Fill';
/**
* Remix Icon: Battery 2 Fill
* @see {@link https://remixicon.com/icon/battery-2-fill Remix Icon Docs}
*/
export const Battery2Fill = memo(Icon);