@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 729 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="M21.778 4h-2.837l-4.49 4.371a3.52 3.52 0 0 1-2.451.99 3.52 3.52 0 0 1-2.452-.99L5.062 4h-2.84L8.13 9.754c2.14 2.083 5.607 2.083 7.745 0zM2.223 20H5.05l4.508-4.385a3.5 3.5 0 0 1 2.443-.985c.914 0 1.792.354 2.443.985L18.952 20h2.826l-5.92-5.761c-2.132-2.073-5.585-2.073-7.715 0z"/>
</Svg>);
});
Icon.displayName = 'XrpLine';
/**
* Remix Icon: Xrp Line
* @see {@link https://remixicon.com/icon/xrp-line Remix Icon Docs}
*/
export const XrpLine = Icon;