@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 718 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const RegisteredLine = /* @__PURE__ */ memo(function RegisteredLine(_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 2m0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16m.5 3a3.5 3.5 0 0 1 1.82 6.49L16.868 17h-2.472l-2.18-3H10v3H8V7zm0 2H10v3h2.5a1.5 1.5 0 0 0 1.493-1.355L14 10.5A1.5 1.5 0 0 0 12.5 9"/>
</Svg>);
});
/**
* Remix Icon: Registered Line
* @see {@link https://remixicon.com/icon/registered-line Remix Icon Docs}
*/
export { RegisteredLine };