@opensig/opendesign
Version:
38 lines (37 loc) • 548 B
JavaScript
import { inTextareaProps } from "../_components/in-textarea/types.mjs";
const textareaProps = {
...inTextareaProps,
/**
* @zh-CN 尺寸
* @en-US Size
*/
size: {
type: String
},
/**
* @zh-CN 圆角
* @en-US Round
*/
round: {
type: String
},
/**
* @zh-CN 颜色类型
* @en-US Color type
*/
color: {
type: String,
default: "normal"
},
/**
* @zh-CN 形状变体
* @en-US Shape variant
*/
variant: {
type: String,
default: "outline"
}
};
export {
textareaProps
};