@brizy/media-gallery
Version:
11 lines (10 loc) • 414 B
TypeScript
import { PropsWithChildren, ReactElement } from "react";
import { Props as IconProps } from "@brizy/ui/lib/Icon";
export interface Props {
title: string;
isBlue?: boolean;
icon?: IconProps["source"];
helper?: string;
onIconClick?: (el: HTMLElement) => void;
}
export declare const DetailItem: ({ title, isBlue, icon, children, onIconClick, helper, }: PropsWithChildren<Props>) => ReactElement;