UNPKG

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) 526 B
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 File: import("svelte").Component<Props, {}, "">; type File = ReturnType<typeof File>; export default File;