/* Copyright (C) 2024-2025 LibreWeddingPlanner contributors*/ import * as HeroIcon from '@heroicons/react/24/outline' import { ComponentProps } from 'react' type Props = { name: keyof typeof HeroIcon } & ComponentProps export const Icon = ({ name, ...props }: Props) => { const IconComponent = HeroIcon[name] return }