@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 633 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="M14 6a2 2 0 1 1-4 0 2 2 0 0 1 4 0m1.465 2a4 4 0 1 0-6.93 0H5.066a1 1 0 0 0-.986.832l-1.88 11A1 1 0 0 0 3.186 21h17.629a1 1 0 0 0 .986-1.169l-1.88-11A1 1 0 0 0 18.934 8z"/>
</Svg>);
});
Icon.displayName = 'WeightFill';
/**
* Remix Icon: Weight Fill
* @see {@link https://remixicon.com/icon/weight-fill Remix Icon Docs}
*/
export const WeightFill = Icon;