This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/react/components/application-ui/headings/section-headings/with_label.jsx
2024-01-24 19:02:44 +08:00

11 lines
378 B
JavaScript

export default function Example() {
return (
<div className="border-b border-gray-200 pb-5">
<div className="-ml-2 -mt-2 flex flex-wrap items-baseline">
<h3 className="ml-2 mt-2 text-base font-semibold leading-6 text-gray-900">Job Postings</h3>
<p className="ml-2 mt-1 truncate text-sm text-gray-500">in Engineering</p>
</div>
</div>
)
}