@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 868 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="M10.52 19.863a10 10 0 0 1 .826-3.395 6.98 6.98 0 0 1-4.013-1.753l1.334-1.49a4.98 4.98 0 0 0 3.854 1.246 9.99 9.99 0 0 1 7.342-3.951 8 8 0 1 0-9.343 9.343m8.503-7.227a8.01 8.01 0 0 0-6.387 6.387zM22 12q0 .251-.012.5L12.5 21.988A10 10 0 0 1 12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10m-12-2a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m7 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/>
</Svg>);
});
Icon.displayName = 'EmojiStickerLine';
/**
* Remix Icon: Emoji Sticker Line
* @see {@link https://remixicon.com/icon/emoji-sticker-line Remix Icon Docs}
*/
export const EmojiStickerLine = Icon;