mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-21 22:53:35 -05:00
* Migrations * Arrange admin UI * Load staff from DB * Fix TODO * Can add/remove staff * isTournamentAdmin / isTournamentOrganizer * Show chat to streamer * User titles in the chat * chat name color * Unique constraint * TO Staff E2E tests * Casts on stream page * Streamer test * Fix test
18 lines
296 B
TypeScript
18 lines
296 B
TypeScript
import clsx from "clsx";
|
|
|
|
export function Divider({
|
|
children,
|
|
className,
|
|
smallText,
|
|
}: {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
smallText?: boolean;
|
|
}) {
|
|
return (
|
|
<div className={clsx("divider", className, { "text-sm": smallText })}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|