Update various components

This commit is contained in:
2026-02-26 21:03:21 -05:00
parent 637b3a0c34
commit 94f0f3ca13
20 changed files with 84 additions and 112 deletions

View File

@@ -1,7 +1,7 @@
import type { HTMLProps } from "react";
import type { ComponentProps } from "react";
export interface MessageBlockProps extends HTMLProps<HTMLDivElement> {
export interface MessageBlockProps extends ComponentProps<"div"> {
outline?: "none" | "sm" | "md" | "lg";
rounded?: "none" | "xs" | "sm" | "md" | "lg" | "xl";
}