UNPKG

@spaced-out/ui-design-system

Version:
21 lines 687 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 '../Icon'; type ClassNames = Readonly<{ wrapper?: string; title?: string; rightSlot?: string; }>; export type FormTitleWrapperProps = { classNames?: ClassNames; iconType?: IconType; iconName?: string; iconSize?: IconSize; iconColor?: ColorTypes; title: React.ReactNode; rightSlot?: React.ReactNode; }; export declare const FormTitleWrapper: Flow.AbstractComponent<FormTitleWrapperProps, HTMLDivElement>; export {}; //# sourceMappingURL=FormTitleWrapper.d.ts.map