sate-lib
Version:
A lightweight and modular React component library designed for modern web interfaces. **SATE Lib** powers the [sate.menu](https://sate.menu) platform with reusable, scalable, and themeable UI components.
16 lines • 1 kB
TypeScript
/** biome-ignore-all lint/a11y/noSvgWithoutTitle: <TBD> */
/** biome-ignore-all lint/correctness/useUniqueElementIds: <TBD> */
import { type SVGProps } from "react";
export type Variant = "wordmark" | "tileDark" | "tileLight";
export type Color = "currentColor" | "dark" | "light";
export interface LogoProps extends SVGProps<SVGSVGElement> {
size?: number;
variant?: Variant;
color?: string;
title?: string;
}
export declare function LogoWordMark({ className, size, color, title, ...rest }: LogoProps): import("react/jsx-runtime").JSX.Element;
export declare function LogoTileDark({ className, size, color, title, ...rest }: LogoProps): import("react/jsx-runtime").JSX.Element;
export declare function LogoTileLight({ className, size, color, title, ...rest }: LogoProps): import("react/jsx-runtime").JSX.Element;
export declare const Logo: import("react").ForwardRefExoticComponent<Omit<LogoProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
//# sourceMappingURL=logo.d.ts.map