@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 946 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="M12 2c5.522 0 10 3.978 10 8.889a5.56 5.56 0 0 1-5.556 5.555h-1.966c-.922 0-1.667.745-1.667 1.667 0 .422.167.811.422 1.1.267.3.434.689.434 1.122C13.667 21.256 12.9 22 12 22 6.478 22 2 17.522 2 12S6.478 2 12 2m-1.189 16.111a3.664 3.664 0 0 1 3.667-3.667h1.966A3.56 3.56 0 0 0 20 10.89C20 7.139 16.468 4 12 4a8 8 0 0 0-.676 15.972 3.65 3.65 0 0 1-.513-1.86M7.5 12a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m9 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M12 9a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3"/>
</Svg>);
});
Icon.displayName = 'PaletteLine';
/**
* Remix Icon: Palette Line
* @see {@link https://remixicon.com/icon/palette-line Remix Icon Docs}
*/
export const PaletteLine = Icon;