import React from 'react'; import classNames from 'classnames'; import { Box, Chip, Header, Icon, IconButton, Icons, Text, as } from 'folds'; import * as css from './ImageEditor.css'; export type ImageEditorProps = { name: string; url: string; requestClose: () => void; }; export const ImageEditor = as<'div', ImageEditorProps>( ({ className, name, url, requestClose, ...props }, ref) => { const handleApply = () => { // }; return (
Image Editor Save
{name}
); } );