mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
11 lines
253 B
TypeScript
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>
|
|
);
|
|
}
|