Skip to content

Commit

Permalink
fix(icons): fix calendar-duration icon (#3714)
Browse files Browse the repository at this point in the history
  • Loading branch information
mainframev committed Jan 11, 2023
1 parent 557970d commit b07e295
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion packages/orbit-components/config/fetchIcons.mts
Expand Up @@ -98,7 +98,9 @@ const setSvgContent = (name: string, content: string, id: number) => {

return dedent`
<!--character:${id}-->
${content.replace(/(fill|clip)-rule="evenodd"|fill=".*"/gm, "")}
${content
.replace(/(fill|clip)-rule="evenodd"|fill=".*"/gm, "")
.replace(/(stroke|stroke-.*)=".*"/gm, "")}
`;
};

Expand Down
6 changes: 3 additions & 3 deletions packages/orbit-components/src/icons/svg/calendar-duration.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b07e295

Please sign in to comment.