feat(tasks): allow management of job intervals and disabling them (#3408)
This commit is contained in:
27
packages/ui/src/icons/create.ts
Normal file
27
packages/ui/src/icons/create.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { IconNode } from "@tabler/icons-react";
|
||||
import { createReactComponent } from "@tabler/icons-react";
|
||||
import { parseSync } from "svgson";
|
||||
|
||||
import { capitalize } from "@homarr/common";
|
||||
|
||||
interface CustomIconOptions {
|
||||
name: string;
|
||||
svgContent: string;
|
||||
type: "outline" | "filled";
|
||||
}
|
||||
|
||||
export const createCustomIcon = ({ svgContent, type, name }: CustomIconOptions) => {
|
||||
const icon = parseSync(svgContent);
|
||||
|
||||
const children = icon.children.map(({ name, attributes }, i) => {
|
||||
attributes.key = `svg-${i}`;
|
||||
|
||||
attributes.strokeWidth = attributes["stroke-width"] ?? "2";
|
||||
delete attributes["stroke-width"];
|
||||
|
||||
return [name, attributes] satisfies IconNode[number];
|
||||
});
|
||||
|
||||
const pascalCaseName = `Icon${capitalize(name.replace("-", ""))}`;
|
||||
return createReactComponent(type, name, pascalCaseName, children);
|
||||
};
|
||||
Reference in New Issue
Block a user