lookingglass/hyperglass/ui/components/table/button.tsx
2021-12-17 21:08:45 -07:00

7 lines
261 B
TypeScript

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