parent
1bb2f62ee7
commit
e6da495327
3 changed files with 15 additions and 0 deletions
@ -0,0 +1,12 @@ |
||||
import React from 'react'; |
||||
import { Heading } from '@chakra-ui/react'; |
||||
|
||||
type ResourceGroupTitleProps = { |
||||
children: React.ReactNode; |
||||
}; |
||||
|
||||
export function ResourceGroupTitle(props: ResourceGroupTitleProps) { |
||||
const { children } = props; |
||||
|
||||
return <Heading fontSize='22px' as="h2" mb={'10px'}>{children}</Heading>; |
||||
} |
Loading…
Reference in new issue