2
0
Files
bot/apps/landing-page/assets/icons/CloseIcon.tsx

16 lines
412 B
TypeScript
Raw Normal View History

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