2023-05-05 20:27:14 -03:00

21 lines
469 B
TypeScript

import {IconSvgProps} from "@/types";
export const CheckLinearIcon = ({size = 24, width, height, ...props}: IconSvgProps) => (
<svg
aria-hidden="true"
fill="none"
focusable="false"
height={size || height}
role="presentation"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
viewBox="0 0 24 24"
width={size || width}
{...props}
>
<polyline points="20 6 9 17 4 12" />
</svg>
);