nes-ui-react
Version:
A design system that paints the web in 8 bits.
9 lines (8 loc) • 304 B
TypeScript
import { AnchorHTMLAttributes } from "react";
export interface AProps extends AnchorHTMLAttributes<any> {
transparent?: boolean;
dense?: boolean;
name?: string;
}
export declare const ACustomProps: string[];
export declare const A: (props: AProps) => import("react/jsx-runtime").JSX.Element;