Skip to content

Commit

Permalink
fix: formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmymorris authored Dec 12, 2023
1 parent c01cfd9 commit 4521927
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/transformer/shadow-css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,5 @@ export const shadowCss: StyleDictionary.Transform = {
transformer: ({ value }: { value: string | TokenShadow }) =>
typeof value === 'string'
? value
: `${value.offsetX || 0} ${value.offsetY || 0} ${value.blur || 0} ${value.spread || 0} ${
value.color
}`,
: `${value.offsetX || 0} ${value.offsetY || 0} ${value.blur || 0} ${value.spread || 0} ${value.color}`,
}

0 comments on commit 4521927

Please sign in to comment.