mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
style: optimizations
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
import { Box, Grid, Stack, Typography } from '@mui/material';
|
||||
import ToolCard from './ToolCard';
|
||||
import { IconifyIcon } from '@iconify/react';
|
||||
|
||||
export interface ToolCardProps {
|
||||
title: string;
|
||||
description: string;
|
||||
link: string;
|
||||
icon: IconifyIcon | string;
|
||||
}
|
||||
|
||||
interface AllToolsProps {
|
||||
@@ -26,6 +28,7 @@ export default function AllTools({ title, toolCards }: AllToolsProps) {
|
||||
title={card.title}
|
||||
description={card.description}
|
||||
link={card.link}
|
||||
icon={card.icon}
|
||||
/>
|
||||
</Grid>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user