Files
omni-tools/src/components/InputHeader.tsx

11 lines
253 B
TypeScript
Raw Normal View History

2024-06-24 02:51:22 +01:00
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>
);
}