tandem-front-end
Version:
Visual editor for web components
21 lines (14 loc) • 454 B
TypeScript
import * as React from "react";
type TextProps = {
text?: string;
} & React.HTMLAttributes<any>;
type ElementProps = {
ref?: any;
} & React.HTMLAttributes<any>;
export type BaseVariantPillProps = {
variant?: string;
textProps?: TextProps;
emptyProps?: ElementProps;
} & ElementProps;
export type _2c32917123Props = BaseVariantPillProps;
export const VariantPill: (props: BaseVariantPillProps) => React.ReactElement<BaseVariantPillProps>;