UNPKG

@boxyhq/svelte-ui

Version:

Svelte UI components from BoxyHQ

21 lines (20 loc) 635 B
import { SvelteComponentTyped } from "svelte"; export interface CheckMarkIconProps { svgAttrs?: SVGProps; } import { SVGProps } from "../types"; declare const __propDef: { props: { svgAttrs?: CheckMarkIconProps["svgAttrs"]; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; type CheckMarkIconProps_ = typeof __propDef.props; export type CheckMarkIconEvents = typeof __propDef.events; export type CheckMarkIconSlots = typeof __propDef.slots; export default class CheckMarkIcon extends SvelteComponentTyped<CheckMarkIconProps_, CheckMarkIconEvents, CheckMarkIconSlots> { } export {};