@selenite/commons
Version:
This typescript package provides a set of frequently used utilities, types and svelte actions for building projects with Typescript and Svelte.
8 lines (7 loc) • 309 B
TypeScript
import type { HTMLAttributes } from 'svelte/elements';
interface Props extends Omit<HTMLAttributes<SVGElement>, 'width' | 'height'> {
scale?: number;
}
declare const SeleniteLogo: import("svelte").Component<Props, {}, "">;
type SeleniteLogo = ReturnType<typeof SeleniteLogo>;
export default SeleniteLogo;