// import "./icon";
// import "../theme/theme";
// import { html } from "lit";
// import icons from "./icons.json";
// // More on default export: https://storybook.js.org/docs/web-components/writing-stories/introduction#default-export
// export default {
// component: "sonic-icon",
// title: "core/components/ui/Icon",
// args: {
// name: "circle-info",
// size: "2xl",
// prefix: "regular",
// },
// argTypes: {
// name: {
// control: {
// type: "select",
// options: ["--- regular ---", ...Object.keys(icons.regular)].concat([
// "--- solid ---",
// ...Object.keys(icons.solid),
// ]),
// },
// },
// prefix: {
// control: {
// type: "select",
// options: ["regular", "solid"],
// },
// },
// size: {
// table: { category: "properties" },
// description: "taille de l'icone",
// control: {
// type: "select",
// options: ["", "xs", "sm", "md", "lg", "xl", "2xl"],
// },
// },
// styles: { table: { category: "Internals or others" } },
// },
// };
// const Template: any = ({ name, prefix, size }: { name: string; prefix: string; size: string }) => {
// return html`