@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 1.14 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="M5.42 19.528A9.96 9.96 0 0 0 12 22a9.97 9.97 0 0 0 6.585-2.472c1.564-1.594-3.597-7.258-6.585-9.515-2.985 2.257-8.15 7.921-6.582 9.515m9.3-12.005c2.083 2.467 6.236 8.594 5.063 10.76A9.95 9.95 0 0 0 22 12.002a9.96 9.96 0 0 0-2.975-7.113s-.023-.018-.068-.035a.7.7 0 0 0-.234-.038c-.494 0-1.655.362-4.005 2.706M5.045 4.855c-.048.017-.068.034-.072.035a9.96 9.96 0 0 0-2.973 7.113c0 2.379.832 4.561 2.217 6.278C3.051 16.11 7.201 9.988 9.285 7.523 6.935 5.178 5.772 4.818 5.28 4.818a.6.6 0 0 0-.234.039zm6.955.104s-2.454-1.436-4.37-1.504c-.753-.027-1.213.246-1.268.282C8.15 2.539 10.05 2 11.988 2H12c1.945 0 3.838.538 5.638 1.737-.056-.038-.512-.31-1.266-.282-1.917.068-4.372 1.5-4.372 1.5z"/>
</Svg>);
});
Icon.displayName = 'XboxFill';
/**
* Remix Icon: Xbox Fill
* @see {@link https://remixicon.com/icon/xbox-fill Remix Icon Docs}
*/
export const XboxFill = Icon;