wix-style-react
Version:
wix-style-react
9 lines • 459 B
TypeScript
import React from 'react';
import { FieldSetProps, LegendPlacement, LegendSize } from '../../FieldSet.types';
type Props = Pick<FieldSetProps, 'children' | 'charCount' | 'suffix'> & {
labelPlacement: LegendPlacement;
labelSize: LegendSize;
};
declare const InlineLabelWrapper: ({ children, suffix, charCount, labelPlacement, labelSize, }: Props) => React.JSX.Element;
export default InlineLabelWrapper;
//# sourceMappingURL=InlineLabelWrapper.d.ts.map