UNPKG

apphouse

Version:

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

22 lines (21 loc) 641 B
import React from 'react'; import { ApphouseComponent } from '../components/component.interfaces'; import { CSSProperties } from 'glamor'; export interface ApphouseCopyrightStyles { container?: CSSProperties; text?: CSSProperties; img?: CSSProperties; } export interface ApphouseCopyrightProps extends ApphouseComponent<ApphouseCopyrightStyles> { children?: React.ReactNode; /** * The size of the image * @default 20 */ imageSize?: number; /** * The year to display in the copyright notice */ year?: number; } export declare const ApphouseCopyright: React.FC<ApphouseCopyrightProps>;