import { ComponentProps } from 'react'; import { DeepPartial } from '../../types'; import { CopyrightTheme } from './theme'; /** * @name CopyrightProps * @description Props for the Copyright component. */ export interface CopyrightProps extends ComponentProps<"div"> { by?: string; href?: string; /** * @name theme * @description Optional prop to change the theme of the copyright text. * @default {} * @type DeepPartial * @example * ```tsx * * ``` */ theme?: DeepPartial; /** * @name year * @description Optional prop to specify the year for the copyright. * @default null * @type number * @example * ```tsx * * ``` */ year?: number; } //# sourceMappingURL=props.d.ts.map