2024-11-05 10:14:41 +08:00

17 lines
372 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { buildProps } from '../../../../utils'
export const stepsBaseProps = buildProps({
/**
* @description 默认颜色以tn开头使用图鸟内置颜色
*/
color: String,
/**
* @description 激活时颜色以tn开头使用图鸟内置颜色
*/
activeColor: String,
/**
* @description 禁止点击
*/
disabled: Boolean,
} as const)