ant-design-vue/types/timeline/timeline-item.d.ts

24 lines
636 B
TypeScript
Raw Normal View History

// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { VNodeChild } from 'vue';
2020-08-31 06:59:56 +00:00
import { AntdComponent, AntdProps } from '../component';
export declare class TimelineItem extends AntdComponent {
2020-08-31 06:59:56 +00:00
$props: AntdProps & {
2020-08-30 14:59:47 +00:00
/**
* Set the circle's color to blue, red, green or other custom colors
* @default 'blue'
* @type string
*/
color?: string;
/**
* Customize timeline dot
* @type any (string | slot)
*/
dot?: VNodeChild | JSX.Element;
2020-08-30 14:59:47 +00:00
};
}