mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import type { HTMLProps } from "react";
|
|
|
|
|
|
export interface MessageBlockProps extends HTMLProps<HTMLDivElement> {
|
|
outline?: "none" | "sm" | "md" | "lg";
|
|
rounded?: "none" | "xs" | "sm" | "md" | "lg" | "xl";
|
|
}
|