UNPKG

@spaced-out/ui-design-system

Version:
22 lines 724 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; import type { ColorTypes } from '../../types/typography'; import type { IconSize, IconType } from '../../components/Icon'; type ClassNames = Readonly<{ wrapper?: string; title?: string; rightSlot?: string; }>; export interface FormTitleWrapperProps { classNames?: ClassNames; iconType?: IconType; iconName?: string; iconSize?: IconSize; iconColor?: ColorTypes; title: React.ReactNode; rightSlot?: React.ReactNode; testId?: string; } export declare const FormTitleWrapper: Flow.AbstractComponent<FormTitleWrapperProps, HTMLDivElement>; export {}; //# sourceMappingURL=FormTitleWrapper.d.ts.map