@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 572 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const ShiningFill = /* @__PURE__ */ memo(function ShiningFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M1 11c5.523 0 10-4.477 10-10h2c0 5.523 4.477 10 10 10v2c-5.523 0-10 4.477-10 10h-2c0-5.523-4.477-10-10-10z"/>
</Svg>);
});
/**
* Remix Icon: Shining Fill
* @see {@link https://remixicon.com/icon/shining-fill Remix Icon Docs}
*/
export { ShiningFill };