import * as React from 'react'; import type { SVGProps } from 'react'; import { memo } from 'react'; const SvgTicketIcon = (props: SVGProps) => ( ); const Memo = memo(SvgTicketIcon); export default Memo;