import { Check } from "lucide-react";
const Specs = ({ includedItems, technicalSpecs }: { includedItems: string[], technicalSpecs: string[] }) => {
const CheckIcon = ;
return (
Product Details
What's Included:
{includedItems.map((item, index) => (
-
{CheckIcon}
{item}
))}
Technical Specs:
{technicalSpecs.map((spec, index) => (
-
{CheckIcon}
{spec}
))}
);
};
export default Specs;