nes-ui-react
Version:
A design system that paints the web in 8 bits.
9 lines (8 loc) • 392 B
TypeScript
/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface PixelBorderProps extends IdProps, StyleProps, React.PropsWithChildren<any> {
doubleSize?: boolean;
doubleRoundCorners?: boolean;
}
export declare const PixelBorder: (props: PixelBorderProps) => import("react/jsx-runtime").JSX.Element;