m3-svelte
Version:
M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://ktibow.github.io/m3-svelte/) for demos and usage instructions.
18 lines (17 loc) • 638 B
TypeScript
/** @deprecated use Slider directly instead */
declare const SliderTicks: import("svelte").Component<Omit<{
value: number;
min?: number;
max?: number;
step?: number | "any";
disabled?: boolean;
showValue?: boolean;
size?: "xs" | "s" | "m" | "l" | "xl";
leadingIcon?: import("@iconify/types").IconifyIcon;
trailingIcon?: import("@iconify/types").IconifyIcon;
ticks?: boolean;
endStops?: boolean;
format?: (n: number) => string;
} & Omit<import("svelte/elements").HTMLInputAttributes, "size">, "ticks">, {}, "">;
type SliderTicks = ReturnType<typeof SliderTicks>;
export default SliderTicks;