@extclp/vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
13 lines (12 loc) • 548 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
import { ConfigurableProps } from '@vexip-ui/config';
import { CardSlots } from './symbol';
export declare const cardProps: {
inherit: PropType<boolean>;
title: PropType<string>;
shadow: PropType<"hover" | "always" | "never">;
contentStyle: PropType<string | import('vue').CSSProperties | (string | import('vue').CSSProperties)[]>;
slots: PropType<CardSlots>;
};
export type CardProps = ExtractPropTypes<typeof cardProps>;
export type CardCProps = ConfigurableProps<CardProps>;