@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 638 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="M12 1L21.5 6.5V17.5L12 23L2.5 17.5V6.5L12 1ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z"/>
</Svg>);
};
Icon.displayName = 'SettingsFill';
/**
* Remix Icon: Settings Fill
* @see {@link https://remixicon.com/icon/settings-fill Remix Icon Docs}
*/
export const SettingsFill = memo(Icon);