mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
8 lines
453 B
TypeScript
8 lines
453 B
TypeScript
import { Icon, type IconProps } from './Icon'
|
|
|
|
export const CheckCircleOutline = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M173.65723 98.34326l-56 56a8.00182 8.00182 0 0 1-11.31446 0l-24-24a8.00035 8.00035 0 0 1 11.31446-11.31348L112 137.37207l50.34277-50.34278a8.00035 8.00035 0 0 1 11.31446 11.31397ZM232 128A104 104 0 1 1 128 24a104.11791 104.11791 0 0 1 104 104Zm-16 0a88 88 0 1 0-88 88 88.09957 88.09957 0 0 0 88-88Z" />
|
|
</Icon>
|
|
)
|