import './GenerativeFillButtons.scss'; import * as React from 'react'; import ReactLoading from 'react-loading'; import { Button, IconButton, Type } from 'browndash-components'; import { AiOutlineInfo } from 'react-icons/ai'; import { activeColor } from './generativeFillUtils/generativeFillConstants'; interface ButtonContainerProps { getEdit: () => Promise; loading: boolean; onReset: () => void; } function Buttons({ loading, getEdit, onReset }: ButtonContainerProps) { return (
); } export default Buttons;