boldr-ui
Version:
UI components for Boldr
19 lines (15 loc) • 401 B
Flow
import PropTypes from 'prop-types';
import styled from 'styled-components';
import { font, palette } from 'styled-theme';
const Caption = styled.caption`
font-family: ${font('primary')};
color: ${palette('grayscale', 1)};
font-weight: 500;
line-height: 2rem;
font-size: 0.875rem;
text-transform: uppercase;
`;
Caption.propTypes = {
reverse: PropTypes.bool,
};
export default Caption;