UNPKG

nes-ui-react

Version:

A design system that paints the web in 8 bits.

9 lines (8 loc) 433 B
/// <reference types="react" /> import { IdProps } from "./interface/IdProps"; import { StyleProps } from "./interface/StyleProps"; export interface ToolbarProps extends StyleProps, React.PropsWithChildren<any>, IdProps { borderless?: boolean; roundedCorners?: boolean; } export declare const Toolbar: ({ id, children, style, className, borderless, roundedCorners }: ToolbarProps) => import("react/jsx-runtime").JSX.Element;