svelte-tabs-scrollable
Version:
a simple svelte scrollable tabs with a lot of additional features and with fully supporting of RTL mode
24 lines (23 loc) • 728 B
TypeScript
/** @typedef {typeof __propDef.props} LeftArrowIconProps */
/** @typedef {typeof __propDef.events} LeftArrowIconEvents */
/** @typedef {typeof __propDef.slots} LeftArrowIconSlots */
export default class LeftArrowIcon extends SvelteComponentTyped<{
navBtnsIconColor?: string;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type LeftArrowIconProps = typeof __propDef.props;
export type LeftArrowIconEvents = typeof __propDef.events;
export type LeftArrowIconSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
navBtnsIconColor?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};