flowbite-svelte
Version:
Flowbite components for Svelte
19 lines (18 loc) • 528 B
TypeScript
import type { SVGAttributes } from "svelte/elements";
type IconVariant = "default" | "simple" | "tick";
interface Props extends SVGAttributes<SVGSVGElement> {
class?: string;
variant?: IconVariant;
}
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* Props
* ## Props
* @prop class: className
* @prop variant = "default"
* @prop ...restProps
*/
declare const CheckmarkIcon: import("svelte").Component<Props, {}, "">;
type CheckmarkIcon = ReturnType<typeof CheckmarkIcon>;
export default CheckmarkIcon;