mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-04-21 15:28:30 +00:00
7 lines
261 B
TypeScript
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" />
|
|
);
|