wix-style-react
Version:
17 lines (12 loc) • 371 B
TypeScript
import * as React from 'react';
import { TooltipCommonProps } from '../common';
export type InfoIconSize = 'small' | 'medium';
export interface InfoIconProps {
content: React.ReactNode;
size?: InfoIconSize;
dataHook?: string;
className?: string;
tooltipProps?: TooltipCommonProps;
}
declare const InfoIcon: React.FC<InfoIconProps>;
export default InfoIcon;