Updates in v1.0.0
may break previous implementations of Fancy. These changes include:
- No longer preserving the original classNames. Fancy now only generates hashed classNames.
- Swapping the composition order of
component
andcss
// Before (v0.x)
const StyledCard = fancy(css)(Card)
// After (v1.x)
const StyledCard = fancy(Card)(css)