@hakit/components
Version:
A series of components to work with @hakit/core
15 lines • 726 B
TypeScript
import { ReactNode } from 'react';
import { EntityName, HassEntityWithService, ExtractDomain } from '@hakit/core';
import { IconProps } from '@iconify/react';
import { RowProps } from '../..';
export interface WeatherCardDetailProps extends Omit<RowProps, "title"> {
icon?: string;
/** the props for the icon, which includes styles for the icon */
iconProps?: Omit<IconProps, "icon">;
entity: EntityName;
title?: ReactNode;
suffix?: ReactNode;
render?: (value: HassEntityWithService<ExtractDomain<EntityName>>) => ReactNode;
}
export declare function WeatherCardDetail(props: WeatherCardDetailProps): import("@emotion/react/jsx-runtime").JSX.Element;
//# sourceMappingURL=WeatherCardDetail.d.ts.map