@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 1.23 kB
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="M22.001 12c0 5.522-4.477 10-10 10s-10-4.478-10-10 4.477-10 10-10 10 4.477 10 10m-16.8-1.336a1.335 1.335 0 1 0 0 2.67 1.335 1.335 0 0 0 0-2.67m9.533 6.069a1.334 1.334 0 1 0 1.334 2.31 1.334 1.334 0 0 0-1.334-2.31M8.1 12c0-1.32.656-2.485 1.659-3.19l-.977-1.636a5.8 5.8 0 0 0-2.398 3.371 1.875 1.875 0 0 1 0 2.91 5.8 5.8 0 0 0 2.398 3.371l.977-1.636A3.89 3.89 0 0 1 8.1 12m3.9-3.9a3.9 3.9 0 0 1 3.884 3.554l1.903-.028a5.78 5.78 0 0 0-1.724-3.762 1.872 1.872 0 0 1-2.513-1.454 5.83 5.83 0 0 0-4.12.39l.927 1.663a3.9 3.9 0 0 1 1.643-.363m0 7.8c-.587 0-1.143-.13-1.642-.363l-.928 1.662a5.77 5.77 0 0 0 4.12.39 1.872 1.872 0 0 1 2.514-1.454 5.78 5.78 0 0 0 1.723-3.762l-1.903-.027A3.9 3.9 0 0 1 12 15.9m2.732-8.633a1.335 1.335 0 1 0 1.335-2.312 1.335 1.335 0 0 0-1.335 2.312"/>
</Svg>);
});
Icon.displayName = 'UbuntuFill';
/**
* Remix Icon: Ubuntu Fill
* @see {@link https://remixicon.com/icon/ubuntu-fill Remix Icon Docs}
*/
export const UbuntuFill = Icon;