@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 723 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="M6.923 21C5.113 18.664 4 15.493 4 12s1.113-6.664 2.923-9h2.014C7.235 5.388 6.2 8.542 6.2 12s1.035 6.612 2.737 9zm10.151 0H15.06c1.702-2.388 2.737-5.542 2.737-9s-1.035-6.612-2.737-9h2.014c1.81 2.336 2.923 5.507 2.923 9s-1.112 6.664-2.923 9"/>
</Svg>);
});
Icon.displayName = 'ParenthesesFill';
/**
* Remix Icon: Parentheses Fill
* @see {@link https://remixicon.com/icon/parentheses-fill Remix Icon Docs}
*/
export const ParenthesesFill = Icon;