@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 793 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.005 3a1 1 0 0 1 1 1v5.5a2.5 2.5 0 0 0 0 5V20a1 1 0 0 1-1 1h-18a1 1 0 0 1-1-1v-5.5a2.5 2.5 0 0 0 0-5V4a1 1 0 0 1 1-1zm-1 2h-16v2.968l.156.08a4.5 4.5 0 0 1 2.339 3.74l.005.212a4.5 4.5 0 0 1-2.344 3.95l-.156.08V19h16v-2.97l-.156-.08a4.5 4.5 0 0 1-2.34-3.738L17.506 12c0-1.704.947-3.187 2.344-3.951l.156-.081zm-4 4v6h-8V9z"/>
</Svg>);
});
Icon.displayName = 'Ticket2Line';
/**
* Remix Icon: Ticket 2 Line
* @see {@link https://remixicon.com/icon/ticket-2-line Remix Icon Docs}
*/
export const Ticket2Line = Icon;