import './GenerativeFillButtons.scss'; import * as React from 'react'; import ReactLoading from 'react-loading'; import { Button, IconButton, Type } from '@dash/components'; import { AiOutlineInfo } from 'react-icons/ai'; import { activeColor } from './imageEditorUtils/imageEditorConstants'; interface ButtonContainerProps { onClick: () => Promise; loading: boolean; onReset: () => void; } export function EditButtons({ loading, onClick: getEdit, onReset }: ButtonContainerProps) { return (
); } export function CutButtons({ loading, onClick: cutImage, onReset }: ButtonContainerProps) { return (
); }