svelte-kawaii
Version:
Svelte Kawaii is a Svelte port of React Kawaii, offering cute SVG illustrations to add adorable characters to your Svelte applications. A simple way to bring some cuteness to your UI.
19 lines (18 loc) • 538 B
TypeScript
import { type KawaiiProps as Props } from '..';
/**
* [Go to docs](https://svelte-kawaii.codewithshin.com/)
* ## Types
* @type: size?: number | string;
* @type: color?: string;
* @type: mood?: KawaiiMood;
* @type: uniqueId?: string;
* ## Props
* @props: size = 240,
* @props: mood = 'blissful',
* @props: color = '#A6E191',
* @props: uniqueId = crypto.randomUUID(),
* @props: ...restProps
*/
declare const Browser: import("svelte").Component<Props, {}, "">;
type Browser = ReturnType<typeof Browser>;
export default Browser;