@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 712 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const RegisteredFill = /* @__PURE__ */ memo(function RegisteredFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m.5 5H8v10h2v-3h2.217l2.18 3h2.472l-2.55-3.51a3.5 3.5 0 0 0-1.627-6.486zm0 2a1.5 1.5 0 0 1 1.493 1.355L14 10.5l-.007.145a1.5 1.5 0 0 1-1.348 1.348L12.5 12H10V9z"/>
</Svg>);
});
/**
* Remix Icon: Registered Fill
* @see {@link https://remixicon.com/icon/registered-fill Remix Icon Docs}
*/
export { RegisteredFill };