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