@gechiui/components
Version:
UI components for GeChiUI.
17 lines • 396 B
TypeScript
export default Tip;
export type Props = {
/**
* Children to render in the tip.
*/
children: import('react').ReactNode;
};
/**
* @typedef Props
* @property {import('react').ReactNode} children Children to render in the tip.
*/
/**
* @param {Props} props
* @return {JSX.Element} Element
*/
declare function Tip(props: Props): JSX.Element;
//# sourceMappingURL=index.d.ts.map