@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 585 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="M19.998 12v10a1 1 0 0 1-1 1h-14a1 1 0 0 1-1-1V12zm-11 2h-2v5h2zm10-13a1 1 0 0 1 1 1v8h-16V2a1 1 0 0 1 1-1zm-10 3h-2v4h2z"/>
</Svg>);
});
Icon.displayName = 'FridgeFill';
/**
* Remix Icon: Fridge Fill
* @see {@link https://remixicon.com/icon/fridge-fill Remix Icon Docs}
*/
export const FridgeFill = Icon;