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