Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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