@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
11 lines (10 loc) • 1.29 kB
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg fill={color} viewBox="0 0 28 28" height={size} width={size} {...otherProps}>
<Path d="M23.5 23.2275H4V10.9675C4 10.4275 4.24 9.9275 4.66 9.5875L12.67 3.3675C13.3 2.8775 14.19 2.8775 14.82 3.3675L22.83 9.5875C23.25 9.9175 23.5 10.4375 23.5 10.9675V23.2275ZM5.5 21.7275H22V10.9675C22 10.8975 21.96 10.8175 21.9 10.7675L13.9 4.5475C13.81 4.4775 13.68 4.4775 13.59 4.5475L5.59 10.7675C5.53 10.8075 5.5 10.8875 5.5 10.9675V21.7275ZM13.75 19.2475C13.01 19.2475 12.3 18.9475 11.79 18.4275C11.28 17.9175 11 17.2275 11 16.4975C11 15.7675 11.28 15.0775 11.8 14.5575C12.31 14.0375 13 13.7475 13.75 13.7475C15.27 13.7475 16.5 14.9775 16.5 16.4975C16.5 17.2375 16.21 17.9275 15.69 18.4375C15.18 18.9575 14.49 19.2475 13.75 19.2475ZM13.75 15.2475C13.41 15.2475 13.09 15.3775 12.87 15.6075C12.63 15.8475 12.5 16.1575 12.5 16.4975C12.5 16.8375 12.63 17.1475 12.86 17.3775C13.32 17.8575 14.17 17.8575 14.62 17.3775H14.63C14.86 17.1375 14.99 16.8275 14.99 16.4875C14.99 15.7975 14.43 15.2375 13.74 15.2375L13.75 15.2475Z"/>
</Svg>);
};
Icon.displayName = 'HomeInactive';
export const HomeInactive = memo(Icon);