import React from 'react'; export interface IPrepend { className?: string; [x: string]: any; } export const Prepend: React.FC = (props) => { const { children, className = '', ...otherProps } = props; return (
{children}
); };