mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 06:29:32 +02:00
feat: playwright
This commit is contained in:
19
src/components/ToolInfo.tsx
Normal file
19
src/components/ToolInfo.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Box, Stack, Typography } from '@mui/material';
|
||||
|
||||
interface ExampleProps {
|
||||
title: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export default function ToolInfo({ title, description }: ExampleProps) {
|
||||
return (
|
||||
<Stack direction={'row'} alignItems={'center'} spacing={2} mt={4}>
|
||||
<Box>
|
||||
<Typography mb={2} fontSize={30} color={'primary'}>
|
||||
{title}
|
||||
</Typography>
|
||||
<Typography fontSize={20}>{description}</Typography>
|
||||
</Box>
|
||||
</Stack>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user