// src/components/icon/library.system.ts
var icons = {
check: `
`,
"chevron-down": `
`,
"chevron-left": `
`,
"chevron-right": `
`,
eye: `
`,
"eye-slash": `
`,
"grip-vertical": `
`,
"person-fill": `
`,
"star-fill": `
`,
x: `
`,
"x-circle": `
`
};
var systemLibrary = {
name: "system",
resolver: (name) => {
if (icons[name]) {
return `data:image/svg+xml,${encodeURIComponent(icons[name])}`;
} else {
return "";
}
}
};
var library_system_default = systemLibrary;
export {
library_system_default
};