import React, { ReactElement } from 'react' import Tooltip from '../../../atoms/Tooltip' import styles from './Fees.module.css' import { useField } from 'formik' import Input from '../../../atoms/Input' import Error from './Error' export default function Fees({ tooltips }: { tooltips: { [key: string]: string } }): ReactElement { const [field, meta] = useField('swapFee') return ( <>
Swap Fee } type="number" postfix="%" min="0.1" max="0.9" step="0.1" small {...field} additionalComponent={} /> Community Fee } value="0.1" name="communityFee" postfix="%" readOnly small /> Marketplace Fee } value="0.1" name="marketplaceFee" postfix="%" readOnly small />
) }