@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 581 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const FridgeFill = /* @__PURE__ */ memo(function FridgeFill(_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>);
});
/**
* Remix Icon: Fridge Fill
* @see {@link https://remixicon.com/icon/fridge-fill Remix Icon Docs}
*/
export { FridgeFill };