@synergy-design-system/components
Version:
This package provides the base of the Synergy Design System as native web components. It uses [lit](https://www.lit.dev) and parts of [shoelace](https://shoelace.style/). Synergy officially supports the latest two versions of all major browsers (as define
25 lines (21 loc) • 664 B
JavaScript
// src/components/progress-ring/progress-ring.custom.styles.ts
import { css } from "lit";
var progress_ring_custom_styles_default = css`
:host {
--size: 120px;
--track-width: var(--syn-spacing-x-small);
--track-color: var(--syn-progress-track-color, var(--syn-color-neutral-200));
--indicator-color: var(--syn-progress-indicator-color, var(--syn-color-primary-600));
}
.progress-ring__indicator {
stroke-linecap: initial;
}
.progress-ring__label {
color: var(--syn-typography-color-text);
font: var(--syn-heading-x-large);
}
`;
export {
progress_ring_custom_styles_default
};
//# sourceMappingURL=chunk.5EC6B57G.js.map