svelte-supertiny
Version:
Supertinyicons components for Sveltejs
17 lines (16 loc) • 460 B
TypeScript
import type { Props } from './types';
/**
* [Go to docs](https://svelte-supertiny.codewithshin.com/)
* ## Props
* @prop size = ctx.size || '24'
* @prop role = ctx.role || 'img'
* @prop class: classname
* @prop title
* @prop desc
* @prop focusable = ctx.focusable || 'false'
* @prop ariaLabel
* @prop ...restProps
*/
declare const Spotify: import("svelte").Component<Props, {}, "">;
type Spotify = ReturnType<typeof Spotify>;
export default Spotify;