@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 589 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="M14.122 5h2.146L22.1 20h-2.146zM7.66 5h2.681l5.77 15h-2.144l-1.538-4H5.572l-1.539 4H1.891zm4 9L9 7.086 6.341 14z"/>
</Svg>);
});
Icon.displayName = 'AnthropicLine';
/**
* Remix Icon: Anthropic Line
* @see {@link https://remixicon.com/icon/anthropic-line Remix Icon Docs}
*/
export const AnthropicLine = Icon;