antd
Version:
An enterprise-class UI design language and React components implementation
17 lines (16 loc) • 525 B
TypeScript
import * as React from 'react';
import type { PresetColorType } from '../_util/colors';
import type { LiteralUnion } from '../_util/type';
type RibbonPlacement = 'start' | 'end';
export interface RibbonProps {
className?: string;
prefixCls?: string;
style?: React.CSSProperties;
text?: React.ReactNode;
color?: LiteralUnion<PresetColorType>;
children?: React.ReactNode;
placement?: RibbonPlacement;
rootClassName?: string;
}
declare const Ribbon: React.FC<RibbonProps>;
export default Ribbon;