UNPKG

heroicons-svelte

Version:

The collection of beautiful hand-crafted SVG icons, by the makers of Tailwind CSS, packaged for Svelte apps.

24 lines (23 loc) 759 B
/** @typedef {typeof __propDef.props} DocumentChartBarIconProps */ /** @typedef {typeof __propDef.events} DocumentChartBarIconEvents */ /** @typedef {typeof __propDef.slots} DocumentChartBarIconSlots */ export default class DocumentChartBarIcon extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type DocumentChartBarIconProps = typeof __propDef.props; export type DocumentChartBarIconEvents = typeof __propDef.events; export type DocumentChartBarIconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};