vuetify-swatches
Version:
Color Swatch component for Vuetify3.
36 lines (35 loc) • 1.17 kB
TypeScript
import { Variant } from 'vuetify/lib/composables/variant.d.ts';
import { Anchor } from 'vuetify/lib/util/index.d.ts';
interface Props {
color: string;
isSelected: boolean;
size: string;
icon: string;
iconSize: string;
variant: Variant;
disabled: boolean;
rounded: string | number | boolean;
border: string | number | boolean;
elevation: string | number;
tooltip: boolean;
tooltipLocation: Anchor;
}
declare const _default: import('vue').DefineComponent<Partial<Props>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
click: () => any;
}, string, import('vue').PublicProps, Readonly<Partial<Props>> & Readonly<{
onClick?: (() => any) | undefined;
}>, {
color: string;
isSelected: boolean;
size: string;
icon: string;
iconSize: string;
variant: Variant;
disabled: boolean;
rounded: string | number | boolean;
border: string | number | boolean;
elevation: string | number;
tooltip: boolean;
tooltipLocation: Anchor;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;