// 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` `; // }; // export const Example = Template.bind({}); // const listIconRegular: any = () => { // return html` //
// ${Object.keys(icons.regular).map( // (icon: string) => // html`
// //
//
${icon}
//
` // )} //
// `; // }; // export const iconList = listIconRegular.bind({}); // const listIconLibrary: any = () => { // return html` //
//
// //
//
heroicons
//
//
// //
//
iconoir
//
//
// //
//
material
//
//
// //
//
fontAwesome
//
//
// //
//
feathers
//
//
// `; // }; // export const Online_library = listIconLibrary.bind({});