@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 690 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="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-.814M6 19v-4.985l6-4.286 6 4.286V19z"/>
</Svg>);
});
Icon.displayName = 'Home9Line';
/**
* Remix Icon: Home 9 Line
* @see {@link https://remixicon.com/icon/home-9-line Remix Icon Docs}
*/
export const Home9Line = Icon;