'use client' import React from 'react' import { cn } from "@/lib/utils" import { Label } from "@/components/ui/label" import { useConfig } from '@/hooks/use-config' import { Icon } from "@/components/ui/icon" import { borderedSkinSvg, defaultSkinSvg, } from "./data"; import { skinType } from '@/lib/type' const allSkin: { key: skinType; label: string; }[] = [ { key: "default", label: "Default" }, { key: "bordered", label: "Bordered" }, ]; const SetSkin = () => { const [config, setConfig] = useConfig() return (