Skip to content

Instantly share code, notes, and snippets.

@4ov
Last active August 20, 2020 15:28
Show Gist options
  • Save 4ov/9a7a02b6bb73e6ba7afd047371f18caa to your computer and use it in GitHub Desktop.
Save 4ov/9a7a02b6bb73e6ba7afd047371f18caa to your computer and use it in GitHub Desktop.
h component
import React from 'react'
export default ({ size="16", style, className, children, weight="normal" }) =>{
//
return<span style={{ fontSize : `${size}pt`, fontWeight : weight,display : 'block', ...style }} className={className}>
{children}
</span>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment