legion-vue-core
Version:
25 lines (23 loc) • 495 B
TypeScript
import { COLOR, SIZE } from '../../utilities/constant';
export interface ButtonProps {
/**
* set display block of the component
*/
block?: boolean;
/**
* set align center of the component
*/
center?: boolean;
/**
* set color of the component
*/
color?: COLOR;
/**
* set size of the component
*/
size?: SIZE;
/**
* set variant of the component
*/
variant?: 'solid' | 'outline' | 'soft' | 'transparent';
}