export default function SettingInputContainer({ Input, Icon, label, htmlFor, }: { Input: React.ReactNode; Icon: (props: React.SVGProps) => JSX.Element | null; label: string; htmlFor?: string; }) { return (
{Input}
); }