@ultraviolet/plus
Version:
Ultraviolet Plus
17 lines (16 loc) • 670 B
TypeScript
import { type ReactNode } from 'react';
type StrongProps = {
variant?: 'normal' | 'small' | 'big' | 'capitalized';
children?: ReactNode;
isDisabledOnOverlay?: boolean;
};
export declare const StyledStrong: import("@emotion/styled").StyledComponent<{
variant?: "normal" | "small" | "big" | "capitalized";
isDisabledOnOverlay?: boolean;
children?: ReactNode;
className?: string;
} & {
theme?: import("@emotion/react").Theme;
} & StrongProps, {}, {}>;
export declare const Strong: import("react").MemoExoticComponent<({ variant, children, isDisabledOnOverlay, }: StrongProps) => import("@emotion/react/jsx-runtime").JSX.Element>;
export {};