summaryrefslogtreecommitdiffstats
path: root/src/ui/objects/Deflist.tsx
blob: 53d60d6f4872e8c19b8c2d3ff6d7c89ac1e4f809 (plain) (blame)
1
2
3
4
5
6
7
import type { HTMLAttributes } from "corvos/plugins/jsx.ts";

export type Props = HTMLAttributes<"dl">;

export const Deflist = ({ class: cls, ...props }: Props) => (
	<dl class={`o-deflist ${cls ?? ""}`} {...props} />
);