@daks.dev/svelte.sdk
Version:
DAKS.DEV Svelte SDK
17 lines (16 loc) • 417 B
TypeScript
import type { IconifyIconAttributes } from '../../app/iconify/index.d.ts';
/**
* 'mdi:link-variant'
* 'ic:round-zoom-out-map'
*/
type Props = IconifyIconAttributes & {
link?: boolean;
zoom?: boolean;
small?: boolean;
auto?: boolean;
dark?: boolean;
light?: boolean;
};
declare const Sign: import("svelte").Component<Props, {}, "">;
type Sign = ReturnType<typeof Sign>;
export default Sign;