1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Files
checktheroads-hyperglass/hyperglass/ui/components/table/button.tsx

8 lines
276 B
TypeScript
Raw Normal View History

2021-01-01 11:32:35 -07:00
import { IconButton } from '@chakra-ui/react';
import type { TTableIconButton } from './types';
2021-01-03 23:51:09 -07:00
export const TableIconButton: React.FC<TTableIconButton> = (props: TTableIconButton) => (
2021-01-01 11:32:35 -07:00
<IconButton size="sm" borderWidth={1} {...props} aria-label="Table Icon Button" />
);