2
0
Files
bot/ee/apps/landing-page/assets/icons/CloseIcon.tsx
2024-05-23 10:42:23 +02:00

16 lines
412 B
TypeScript

import { Icon, IconProps } from '@chakra-ui/react'
import React from 'react'
import { featherIconsBaseProps } from './HamburgerIcon'
export const CloseIcon = (props: IconProps) => (
<Icon
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
{...featherIconsBaseProps}
{...props}
>
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</Icon>
)