1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-19 09:28:06 +00:00
thatmattlove-hyperglass/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" />
);