forked from mirrors/thatmattlove-hyperglass
7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
import { IconButton } from '@chakra-ui/react';
|
|
|
|
import type { TTableIconButton } from './types';
|
|
|
|
export const TableIconButton = (props: TTableIconButton) => (
|
|
<IconButton size="sm" borderWidth={1} {...props} aria-label="Table Icon Button" />
|
|
);
|