UNPKG

@initia/icons-svelte

Version:

```js import { IconName } from "@initia/icons-svelte"

18 lines (17 loc) 530 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: number | undefined; color?: string | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type AscendingProps = typeof __propDef.props; export type AscendingEvents = typeof __propDef.events; export type AscendingSlots = typeof __propDef.slots; export default class Ascending extends SvelteComponentTyped<AscendingProps, AscendingEvents, AscendingSlots> { } export {};