mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
12 lines
273 B
TypeScript
12 lines
273 B
TypeScript
namespace Chakra {
|
|
type FlexProps = import('@chakra-ui/core').FlexProps;
|
|
}
|
|
|
|
interface ICardBody extends Omit<Chakra.FlexProps, 'onClick'> {
|
|
onClick?: () => boolean;
|
|
}
|
|
|
|
interface ICardFooter extends Chakra.FlexProps {}
|
|
|
|
interface ICardHeader extends Chakra.FlexProps {}
|