@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 648 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="M4.878 3.003h14.254a1 1 0 0 1 .809.412l3.822 5.256a.5.5 0 0 1-.037.633l-11.354 12.3a.5.5 0 0 1-.735 0L.283 9.305a.5.5 0 0 1-.037-.633l3.823-5.256a1 1 0 0 1 .809-.412"/>
</Svg>);
});
Icon.displayName = 'VipDiamondFill';
/**
* Remix Icon: Vip Diamond Fill
* @see {@link https://remixicon.com/icon/vip-diamond-fill Remix Icon Docs}
*/
export const VipDiamondFill = Icon;