import { QwikIntrinsicElements } from "@builder.io/qwik";
// Solar - https://icones.js.org/collection/solar
export function SolarUploadLinear(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SolarTrashBin2Bold(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SolarClipboardAddBold(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SolarLinkRoundBold(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SolarDownloadMinimalisticBold(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SvgSpinnersBarsRotateFade(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SolarLibraryLinear(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SolarUploadMinimalisticLinear(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SolarRoundedMagniferLinear(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SolarSettingsLinear(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function SolarQuestionCircleLinear(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
// Stereo
export function StereoLogoBold(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function StereoLogoLinear(props: QwikIntrinsicElements['svg'], key: string) {
return (
)
}
export function StereoCircularProgress(
{ value, ...svgProps }: QwikIntrinsicElements['svg'] & { value: number },
key: string
) {
const radius = 10;
const circumference = 2 * Math.PI * radius;
const dashOffset = circumference * (1 - value);
return (
);
}