blob: 9a0eb908488327d1f616e041cb1ff829c2adea5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import {type ComposerImage} from '#/state/gallery'
import type * as Dialog from '#/components/Dialog'
export type EditImageDialogProps = {
control: Dialog.DialogOuterProps['control']
image?: ComposerImage
onChange: (next: ComposerImage) => void
aspectRatio?: number
circularCrop?: boolean
}
export const EditImageDialog = ({}: EditImageDialogProps): React.ReactNode => {
return null
}
|