@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
13 lines (12 loc) • 542 B
TypeScript
import { StyledProps } from '@smart-react-components/core/styled-props';
import { PaletteProp, ResponsiveProp, SizeProp } from '@smart-react-components/core/types';
interface Props extends StyledProps, ResponsiveProp<'tooltipSize', SizeProp> {
duration: number;
hasTransition: boolean;
isSoft: boolean;
palette: PaletteProp;
}
declare const _default: import("styled-components").StyledComponent<"div", any, StyledProps & {
getTooltipSize: (v: any, t: any) => string;
} & Props, "getTooltipSize">;
export default _default;