mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-25 16:39:02 +02:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
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>;
|
|
}
|