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) • 735 B
TypeScript
/** @typedef {typeof __propDef.props} RightArrowIconProps */
/** @typedef {typeof __propDef.events} RightArrowIconEvents */
/** @typedef {typeof __propDef.slots} RightArrowIconSlots */
export default class RightArrowIcon extends SvelteComponentTyped<{
navBtnsIconColor?: string;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type RightArrowIconProps = typeof __propDef.props;
export type RightArrowIconEvents = typeof __propDef.events;
export type RightArrowIconSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
navBtnsIconColor?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};