Styling
CSS-in-JS
hsds-react/
βββ src/
βββ components/
βββ Strong.css.js
βββ index.js
βββ Strong.jsxStyled Components
import styled from 'styled-components'
export const StrongUI = styled('strong')`
font-weight: 600;
&.is-superBold {
font-weight: 900;
}
`
export default StrongUIStrongUI
is-superBold
export
Next
See also
Last updated