Sub text
import React from "react";
import { Tag } from "shoto-ui";
function Tags() {
return (
<div>
<Tag color="red" borderColor="green">
Apple
</Tag>
<Tag color="red" borderColor="black">
<div style={{ display: "inline-block" }}>
<h4>Hey</h4>
<p>Sub text</p>
</div>
</Tag>
</div>
);
}