lookingglass/hyperglass/ui/components/table/button.tsx
2021-12-18 23:45:06 -07:00

9 lines
331 B
TypeScript

import { IconButton } from '@chakra-ui/react';
import type { IconButtonProps } from '@chakra-ui/react';
type TTableIconButton = Omit<IconButtonProps, 'aria-label'>;
export const TableIconButton = (props: TTableIconButton): JSX.Element => (
<IconButton size="sm" borderWidth={1} {...props} aria-label="Table Icon Button" />
);