Skip to content

Commit

Permalink
fix: transform prop type should be string not boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
quantizor authored and gregberge committed Oct 7, 2021
1 parent a70e3a8 commit 50c847e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/system/src/styles/transforms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const getTransform = themeGetter<ThemeTransform>({
})

export interface TransformProps<T extends ITheme = Theme> {
transform?: SystemProp<boolean, T>
transform?: SystemProp<string, T>
}
export const transform = style<TransformProps>({
prop: 'transform',
Expand Down

0 comments on commit 50c847e

Please sign in to comment.