diff --git a/packages/frontend/src/components/projects/create/TemplateCard.tsx b/packages/frontend/src/components/projects/create/TemplateCard.tsx index a107328..3625b64 100644 --- a/packages/frontend/src/components/projects/create/TemplateCard.tsx +++ b/packages/frontend/src/components/projects/create/TemplateCard.tsx @@ -1,8 +1,9 @@ import React from 'react'; import toast from 'react-hot-toast'; -import { Link } from 'react-router-dom'; -import { ReactNativeIcon, ChevronRight } from 'components/shared/CustomIcon'; +import { IconButton, Typography } from '@material-tailwind/react'; + +import { Link } from 'react-router-dom'; interface TemplateDetails { id: string; @@ -16,15 +17,18 @@ interface TemplateCardProps { const CardDetails = ({ template }: { template: TemplateDetails }) => { return ( -