UNPKG

@unicity/design-system

Version:

A comprehensive React component library built on Material-UI with advanced theming capabilities including neumorphism design support

18 lines 514 B
import React from 'react'; import { IconButtonProps as MuiIconButtonProps } from '@mui/material'; export interface IconButtonProps extends MuiIconButtonProps { /** * The tooltip text to display */ tooltip?: string; /** * The variant of the icon button */ variant?: 'contained' | 'outlined' | 'text'; /** * Whether the button should pulse */ pulse?: boolean; } export declare const IconButton: React.FC<IconButtonProps>; //# sourceMappingURL=IconButton.d.ts.map