UNPKG

nes-ui-react

Version:

A design system that paints the web in 8 bits.

7 lines (6 loc) 337 B
/// <reference types="react" /> import { IdProps } from "./interface/IdProps"; import { StyleProps } from "./interface/StyleProps"; export interface RowProps extends StyleProps, React.PropsWithChildren<any>, IdProps { } export declare const Row: ({ id, children, style, className }: RowProps) => import("react/jsx-runtime").JSX.Element;