UNPKG

@cbinsights/fds

Version:
12 lines (11 loc) 426 B
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;