@wordpress/components
Version:
UI components for WordPress.
20 lines (17 loc) • 310 B
text/typescript
/**
* External dependencies
*/
import styled from '@emotion/styled';
/**
* Internal dependencies
*/
import { Heading } from '../heading';
export const ColorHeading = styled( Heading )`
text-transform: uppercase;
line-height: 24px;
font-weight: 500;
&&& {
font-size: 11px;
margin-bottom: 0;
}
`;