2022-04-05 09:51:43 +02:00
|
|
|
import { Icon, IconProps } from '@chakra-ui/react'
|
|
|
|
import React from 'react'
|
|
|
|
import { featherIconsBaseProps } from './HamburgerIcon'
|
2022-02-09 18:40:40 +01:00
|
|
|
|
2022-04-05 09:51:43 +02:00
|
|
|
export const CloseIcon = (props: IconProps) => (
|
|
|
|
<Icon
|
2022-02-09 18:40:40 +01:00
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
2022-04-05 09:51:43 +02:00
|
|
|
viewBox="0 0 24 24"
|
|
|
|
{...featherIconsBaseProps}
|
2022-02-09 18:40:40 +01:00
|
|
|
{...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>
|
2022-02-14 16:55:06 +01:00
|
|
|
)
|