@daks.dev/svelte.sdk
Version:
DAKS.DEV Svelte SDK
26 lines (25 loc) • 676 B
TypeScript
export interface IconifyIconAttributes {
children?: () => any;
icon: string;
class?: ClassName;
role?: string | null;
'aria-label'?: string | null;
'aria-hidden'?: boolean | null;
size?: number | string;
width?: number | string;
height?: number | string;
inline?: boolean;
hFlip?: boolean;
vFlip?: boolean;
flip?: string;
rotate?: number;
color?: string;
}
export interface IconifyBundle {
prefix: string;
icons: Record<string, unknown>;
}
export declare const isIcon: (x: Attribute) => boolean;
export { default as IconTest } from './IconTest.svelte';
import Icon from './Icon.svelte';
export default Icon;