Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@rmwc/typography
Advanced tools
Material Design’s text sizes and styles were developed to balance content density and reading comfort under typical usage conditions.
Material Design’s text sizes and styles were developed to balance content density and reading comfort under typical usage conditions.
<>
<Typography use="headline1">headline1</Typography>
<Typography use="headline2">headline2</Typography>
<Typography use="headline3">headline3</Typography>
<Typography use="headline4">headline4</Typography>
<Typography use="headline5">headline5</Typography>
<Typography use="headline6">headline6</Typography>
<Typography use="subtitle1">subtitle1</Typography>
<Typography use="subtitle2">subtitle2</Typography>
<Typography use="body1">body1</Typography>
<Typography use="body2">body2</Typography>
<Typography use="caption">caption</Typography>
<Typography use="button">button</Typography>
<Typography use="overline">overline</Typography>
</>
<Typography use="headline6" tag="h3">
headline6
</Typography>
You can globally map specify type classes to HTML tags for semantics, or specify a default to be used instead of span
.
<RMWCProvider
typography={{
/** Make all Typography components default to <div> */
defaultTag: 'div',
/** Make headline5 <h5> */
headline5: 'h5',
/** Make body2 <p> */
body2: 'p',
/** Use your own component */
body1: ({ children, ...rest }) => (
<span>
<b>{children}!!!</b>
</span>
)
}}
>
<Typography use="headline6">Rendered default `div`</Typography>
<Typography use="headline5">Rendered with `h5`</Typography>
<Typography use="body2">Rendered with `p`</Typography>
<Typography use="body1">Custom rendering</Typography>
</RMWCProvider>
For backwards compatible typography tags, you can import and use typographyDefaults
from @rmwc/provider
.
<RMWCProvider typography={typographyDefaults}>
<Typography use="headline6">Rendered default `span`</Typography>
<Typography use="headline5">Rendered with `span`</Typography>
<Typography use="body2">Rendered with `span`</Typography>
</RMWCProvider>
The Typography Component
Name | Type | Description |
---|---|---|
use | TypographyT | The typography style. |
FAQs
Material Design’s text sizes and styles were developed to balance content density and reading comfort under typical usage conditions.
We found that @rmwc/typography demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.