@boxyhq/svelte-ui
Version:
Svelte UI components from BoxyHQ
21 lines (20 loc) • 595 B
TypeScript
import { SvelteComponentTyped } from "svelte";
export interface PlusIconProps {
svgAttrs?: SVGProps;
}
import type { SVGProps } from "../types";
declare const __propDef: {
props: {
svgAttrs?: PlusIconProps["svgAttrs"];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
type PlusIconProps_ = typeof __propDef.props;
export type PlusIconEvents = typeof __propDef.events;
export type PlusIconSlots = typeof __propDef.slots;
export default class PlusIcon extends SvelteComponentTyped<PlusIconProps_, PlusIconEvents, PlusIconSlots> {
}
export {};