Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. export const fontSize = (value: number) => {
  2. const valueStr = value + 'px';
  3. return {
  4. fontSize: valueStr
  5. }
  6. };
  7.  
  8. export const warning = style(
  9. fontSize(15), {
  10. $nest: {
  11. '& span': ( fontSize(12), {
  12. backgroundColor: 'yellow'
  13. })
  14. }
  15. });
  16.  
  17.  
  18. <div className={warning}>
  19. This text is formatted correctly
  20. <span>this text is not</span>
  21. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement