fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
8 lines (7 loc) • 345 B
TypeScript
/// <reference types="react" />
import { ButtonContentProps } from './type';
declare const ButtonContent: {
({ as, className, hidden, visible, content, children, ...props }: ButtonContentProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
export default ButtonContent;