import { cssVarV2 } from '@toeverything/theme/v2'; import { html } from 'lit'; export const LoadingIcon = ({ size = '1em', progress = 0.2, ringColor = cssVarV2('loading/background'), strokeColor = cssVarV2('loading/foreground'), }: { size?: string; progress?: number; ringColor?: string; strokeColor?: string; } = {}) => html` `;