I want to use bootstrap's display-4 class within the styling of a styled-component.
The styled-component:
const Heading = styled.h2`
font-weight: bold,
color: #968c8c,
`;
Where do I put the display-4 bootstrap class in the styled-component. I know I could do className='display-4' every time I use the Heading component, but surely there's a better way?