1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

typescript migration

This commit is contained in:
checktheroads
2020-11-03 01:51:41 -07:00
parent a3a20f7207
commit e0eb51012d
49 changed files with 819 additions and 806 deletions

View File

@@ -0,0 +1,7 @@
import { IconButton } from '@chakra-ui/core';
import type { IconButtonProps } from '@chakra-ui/core';
export const TableIconButton = (props: IconButtonProps) => (
<IconButton size="sm" borderWidth={1} {...props} aria-label="Table Icon Button" />
);