@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 630 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M17.5 2.47363L23 11.9999L17.5 21.5262H6.5L1 11.9999L6.5 2.47363H17.5ZM8.63398 8.16979L13.634 16.83L15.366 15.83L10.366 7.16979L8.63398 8.16979Z"/>
</Svg>);
};
Icon.displayName = 'Settings6Fill';
/**
* Remix Icon: Settings 6 Fill
* @see {@link https://remixicon.com/icon/settings-6-fill Remix Icon Docs}
*/
export const Settings6Fill = memo(Icon);