public
anord
read
Ledger
Why work hard when you can work easier?
Languages
Repository composition by tracked source files.
TypeScript
86%
CSS
10%
SQL
3%
Shell
1%
HTML
0%
import type { ReactNode } from "react";
export function EmptyState({
eyebrow,
title,
description,
action
}: {
eyebrow?: string;
title: string;
description: string;
action?: ReactNode;
}) {
return (
<section className="empty-state">
{eyebrow ? <p className="eyebrow">{eyebrow}</p> : null}
<h2 className="empty-state__title">{title}</h2>
<p className="empty-state__description">{description}</p>
{action ? <div className="empty-state__action">{action}</div> : null}
</section>
);
}