@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 709 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="M22 12c0-5.523-4.477-10-10-10a9.98 9.98 0 0 0-7.553 3.446L2 3v6h6L5.865 6.865A8 8 0 1 1 4 12H2c0 5.523 4.477 10 10 10s10-4.477 10-10M10.777 8.518l4.599 3.066a.5.5 0 0 1 0 .832l-4.599 3.066a.5.5 0 0 1-.777-.416V8.934a.5.5 0 0 1 .777-.416"/>
</Svg>);
});
Icon.displayName = 'MemoriesFill';
/**
* Remix Icon: Memories Fill
* @see {@link https://remixicon.com/icon/memories-fill Remix Icon Docs}
*/
export const MemoriesFill = Icon;