Closed hexagon6 closed 4 years ago
with storyshots I get the following error:
Error: undefined:18:49: property missing ':'
I assume that @themed-styling/core generates invalid css when a fallback value or a default parameter is passed in React.
@themed-styling/core
e.g.
const Icon = ({ icon: Icon, alt, color }) => <Icon color={color || 'colors.primary'} aria-label={alt} />
this fails.
const Icon = ({ icon: Icon, alt, color }) => <Icon color={color} aria-label={alt} />
this works
with storyshots I get the following error:
Error: undefined:18:49: property missing ':'
I assume that
@themed-styling/core
generates invalid css when a fallback value or a default parameter is passed in React.e.g.
this fails.
this works