@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="M14.005 20.003v2h-12v-2zM14.59.689l7.778 7.778-1.414 1.414-1.061-.353-2.475 2.475 5.657 5.657-1.414 1.414-5.657-5.657-2.404 2.404.283 1.132-1.415 1.414-7.778-7.778 1.414-1.415 1.132.283 6.293-6.293-.353-1.06zm.707 3.536-7.071 7.07 3.535 3.536 7.071-7.07z"/>
</Svg>);
});
Icon.displayName = 'AuctionLine';
/**
* Remix Icon: Auction Line
* @see {@link https://remixicon.com/icon/auction-line Remix Icon Docs}
*/
export const AuctionLine = Icon;