Skip to content

Commit

Permalink
feat(ui): remove comments
Browse files Browse the repository at this point in the history
RISDEV-4815
  • Loading branch information
hamo225 committed Sep 8, 2024
1 parent 877d79a commit 680fac0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/primevue/progressSpinner/progressSpinner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ const progressSpinner: ProgressSpinnerPassThroughOptions = {
},
};
},
// Define styles for the `circle` inside the `svg`
circle: ({}) => {
const base = tw`stroke-current text-red-500 stroke-2 fill-transparent`; // Stroke color and transparency
const strokeProperties = tw`[stroke-dasharray:200] [stroke-dashoffset:100]`; // Dash array for progress effect
const base = tw`stroke-current text-red-500 stroke-2 fill-transparent`;
const strokeProperties = tw`[stroke-dasharray:200] [stroke-dashoffset:100]`;
return {
class: {
[base]: true,
Expand Down

0 comments on commit 680fac0

Please sign in to comment.