Divider
Visually or semantically separates content by rendering a <hr> tag
import * as UI from "@iyk/ui"
export default () => <UI.Divider />
Some paragraph of content.
Another paragraph with different content.
import * as UI from "@iyk/ui"
export default () => (
<section>
<p>Some paragraph of content.</p>
<UI.Divider />
<p>Another paragraph with different content.</p>
</section>
)