Skip to content

Commit

Permalink
fix: indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
onlyexeption committed Jan 24, 2024
1 parent 70ceeb9 commit 38126f0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
*/
export default function createClassTransformer(styles: any) {
return (classes: string) => {
return classes
.split(' ')
.map(className => styles[className] || className)
.join(' ');
return classes
.split(' ')
.map(className => styles[className] || className)
.join(' ');
}
}

0 comments on commit 38126f0

Please sign in to comment.