2022-03-17 14:37:00 +01:00
|
|
|
import Icon, { IconProps } from '@chakra-ui/icon'
|
|
|
|
import React from 'react'
|
2022-05-13 15:22:44 -07:00
|
|
|
import { featherIconsBaseProps } from '.'
|
2022-02-09 18:40:40 +01:00
|
|
|
|
|
|
|
export const CheckIcon = (props: IconProps) => (
|
|
|
|
<Icon
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
2022-05-13 15:22:44 -07:00
|
|
|
viewBox="0 0 24 24"
|
|
|
|
fill="currentcolor"
|
|
|
|
{...featherIconsBaseProps}
|
2022-02-09 18:40:40 +01:00
|
|
|
{...props}
|
|
|
|
>
|
2022-05-13 15:22:44 -07:00
|
|
|
<polyline points="20 6 9 17 4 12"></polyline>
|
2022-02-09 18:40:40 +01:00
|
|
|
</Icon>
|
2022-03-17 14:37:00 +01:00
|
|
|
)
|