@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 887 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 24 24" width={size} height={size} {...props}>
<Path d="M20.462 3.23c.154 0 .308.078.384.155a.49.49 0 0 1 0 .461l-6.076 10.77 3.846 7.076a.49.49 0 0 1 0 .462.6.6 0 0 1-.385.154h-2.77c-.384 0-.614-.308-.768-.539l-3.923-7.154C11 14.308 16.924 3.77 16.924 3.77c.153-.308.384-.538.769-.538zM8.923 7c.385 0 .616.308.77.538l1.923 3.308c-.154.154-3 5.23-3 5.23-.154.232-.385.54-.77.54H5.155a.6.6 0 0 1-.384-.154.49.49 0 0 1 0-.462l2.846-5.154-1.846-3.23a.49.49 0 0 1 0-.462A.6.6 0 0 1 6.154 7z"/>
</Svg>);
});
Icon.displayName = 'XingFill';
/**
* Remix Icon: Xing Fill
* @see {@link https://remixicon.com/icon/xing-fill Remix Icon Docs}
*/
export const XingFill = Icon;