Run "yarn buld:docs"

This commit is contained in:
Eric Liu 2022-04-30 09:11:23 -07:00
commit 98d82f9c2a
3 changed files with 14 additions and 5 deletions

View file

@ -7,7 +7,16 @@ export interface AspectRatioProps
* Specify the aspect ratio
* @default "2x1"
*/
ratio?: "2x1" | "16x9" | "4x3" | "1x1" | "3x4" | "3x2" | "9x16" | "1x2";
ratio?:
| "2x1"
| "2x3"
| "16x9"
| "4x3"
| "1x1"
| "3x4"
| "3x2"
| "9x16"
| "1x2";
}
export default class AspectRatio extends SvelteComponentTyped<