@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
11 lines (10 loc) • 648 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 28 28" width={size} height={size} {...props}>
<Path d="m22.83 10.585-8.01-6.21c-.63-.5-1.51-.5-2.15 0l-8 6.21c-.43.33-.67.84-.67 1.38v12.26h19.5v-12.26c0-.53-.25-1.05-.67-1.38m-7.14 8.85c-.51.52-1.2.81-1.94.81s-1.45-.3-1.96-.82c-.5-.51-.79-1.2-.79-1.93s.29-1.43.8-1.94c.51-.52 1.2-.81 1.95-.81 1.52 0 2.75 1.23 2.75 2.75 0 .74-.29 1.43-.81 1.94"/>
</Svg>);
});
Icon.displayName = 'HomeActive';
export const HomeActive = Icon;