9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
declare function ButtonIcon(props: HTMLChakraProps<"span">): JSX.Element;
|
|
declare namespace ButtonIcon {
|
|
var displayName: string;
|
|
}
|
|
|
|
export { ButtonIcon };
|