From 5ebff81db23ef2f31b2c53150c6d93a9166f311e Mon Sep 17 00:00:00 2001 From: Valentin Hervieu Date: Tue, 7 Jul 2026 10:47:08 +0200 Subject: [PATCH] Link transform prop docs to advanced guide --- docs/docs/props.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/props.md b/docs/docs/props.md index 9bbd2f4d..22c963bc 100644 --- a/docs/docs/props.md +++ b/docs/docs/props.md @@ -25,7 +25,7 @@ title: Props | `restrictPosition` | `boolean` | | Restrict media position to cropper boundaries. Useful when `zoom < 1`. | | `initialCroppedAreaPercentages` | `{ width: number; height: number; x: number; y: number }` | | Restore a crop from a previous `croppedArea` value. Preferred over pixels. | | `initialCroppedAreaPixels` | `{ width: number; height: number; x: number; y: number }` | | Restore a crop from a previous `croppedAreaPixels` value. | -| `transform` | `string` | | Custom CSS transform for the media. | +| `transform` | `string` | | Custom CSS transform for the media. See [Custom transform](./advanced#custom-transform). | | `style` | `{ containerStyle?: object; mediaStyle?: object; cropAreaStyle?: object }` | | Inline style overrides. | | `classes` | `{ containerClassName?: string; mediaClassName?: string; cropAreaClassName?: string }` | | Custom class names. | | `mediaProps` | `object` | | Props passed to the image or video element. |