Files
omni-tools/src/components/InputHeader.tsx
2024-06-24 02:51:22 +01:00

11 lines
253 B
TypeScript

import Typography from '@mui/material/Typography';
import React from 'react';
export default function InputHeader({ title }: { title: string }) {
return (
<Typography mb={1} fontSize={30} color={'primary'}>
{title}
</Typography>
);
}