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