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