@cbinsights/fds
Version:
Form: A design system by CB Insights
12 lines (11 loc) • 426 B
TypeScript
import React from 'react';
export interface DecoratedInputProps {
/** String to place to the left of the input */
before?: string;
/** String to place to the right of the input */
after?: string;
/** React children */
children?: Array<React.ReactNode> | React.ReactNode;
}
declare const DecoratedInput: ({ before, after, children, }: DecoratedInputProps) => JSX.Element;
export default DecoratedInput;