UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

18 lines (17 loc) 337 B
import React from 'react'; /** * Interface for the ApphouseLogo component */ interface ApphouseLogoProps { color?: string; /** * The size multiplier for the logo * @default 1 */ size?: number; } /** * The ApphouseLogo component */ export declare const ApphouseLogo: React.FC<ApphouseLogoProps>; export {};