import { CSSProperties, FC } from 'react';

import { IFieldProps } from './field';

export interface IMakeDescription {
  elementType: 'text';
  text: string;
  containerStyle?: CSSProperties;
  textStyle?: CSSProperties;
  Icon?: FC;
}

export interface IMakeDescriptionProps extends IFieldProps {
  element: Omit<IMakeDescription, 'elementType'>;
}
