UNPKG

@brizy/media-gallery

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