@bootstrap-styled/v4
Version:
twbs/bootstrap V4 UI Components made with bootstrap-styled. Work with css-in-js, react, styled-components, and Bootstrap Styled utilities.
19 lines (14 loc) • 584 B
Markdown
An address tag component used to display direct contact information for the author/owner of a document or an article.
This component has no props so you should use it only to let web crawler (google...) know you display an address.
`<Address />` component example:
```js
import { Address, Strong, P, A, Small } from '$PACKAGE_NAME';
<Address>
<Strong>YeuTech</Strong>
<P className="mb-0">So 6, Duong 25, Phuong 10</P>
<P>Quan 6, TP. HCMC</P>
<A target="_blank" href="https://bootstrap-styled.github.io">
<Small>bootstrap-styled.github.io</Small>
</A>
</Address>
```