@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 653 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Home9Fill = /* @__PURE__ */ memo(function Home9Fill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M12.581 2.686a1 1 0 0 0-1.162 0l-9.5 6.786 1.162 1.627L12 4.73l8.919 6.37 1.162-1.627zm7 10-7-5a1 1 0 0 0-1.162 0l-7 5a1 1 0 0 0-.42.814V20a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-6.5a1 1 0 0 0-.418-.814"/>
</Svg>);
});
/**
* Remix Icon: Home 9 Fill
* @see {@link https://remixicon.com/icon/home-9-fill Remix Icon Docs}
*/
export { Home9Fill };