Files
Reactive-Resume/client/templates/Glalie/widgets/Heading.tsx
2023-06-07 19:50:48 +02:00

20 lines
539 B
TypeScript

import { ThemeConfig } from 'schema';
import get from 'lodash/get';
import { useAppSelector } from '@/store/hooks';
const Heading: React.FC<React.PropsWithChildren<unknown>> = ({ children }) => {
const theme: ThemeConfig = useAppSelector((state) => get(state.resume.present, 'metadata.theme', {} as ThemeConfig));
return (
<h3
className="mb-2 w-full border-b-2 pb-1.5 font-bold uppercase"
style={{ color: theme.primary, borderColor: theme.primary }}
>
{children}
</h3>
);
};
export default Heading;