UNPKG

@zendeskgarden/react-typography

Version:

Components relating to typography in the Garden Design System

21 lines (18 loc) 785 B
/** * Copyright Zendesk, Inc. * * Use of this source code is governed under the Apache License, Version 2.0 * found at http://www.apache.org/licenses/LICENSE-2.0. */ import styled from 'styled-components'; import { componentStyles } from '@zendeskgarden/react-theming'; import { THEME_SIZES } from './StyledFont.js'; const COMPONENT_ID = 'typography.paragraph'; const StyledParagraph = styled.p.attrs({ 'data-garden-id': COMPONENT_ID, 'data-garden-version': '9.12.6' }).withConfig({ displayName: "StyledParagraph", componentId: "sc-zkuftz-0" })(["margin:0;padding:0;direction:", ";& + &,blockquote + &{margin-top:", ";}", ";"], props => props.theme.rtl ? 'rtl' : 'ltr', props => props.theme.lineHeights[THEME_SIZES[props.size]], componentStyles); export { StyledParagraph };