Sha256: 2718cde96ff9154f6d56956c8121f666b4b1fa441b6afb09c267e77bdd875692
Contents?: true
Size: 761 Bytes
Versions: 948
Compression:
Stored size: 761 Bytes
Contents
import React from 'react' import { Body } from 'playbook-ui' const BodyStyled = (props) => { return ( <> <Body {...props}> <b>{"This text is using the <b> tag"}</b> <br /> <br /> <strong>{"This text is using the <strong> tag"}</strong> <br /> <br /> <a href="#">{"This text is using the <a> tag"}</a> <br /> <br /> <i>{"This text is using an <i> tag"}</i> <br /> <br /> {"This "}<em>word</em>{" is using an <em> tag."} <br /> <br /> <small>{"This text is using a <small> tag."}</small> <br /> <br /> <u>{"This text is using a <u> tag."}</u> </Body> </> ) } export default BodyStyled
Version data entries
948 entries across 948 versions & 2 rubygems