Set scale for export images (#416)

This commit is contained in:
Timur Khazamov
2020-01-17 15:19:56 +03:00
committed by GitHub
parent 71570a325b
commit 82f559f826
7 changed files with 86 additions and 60 deletions

View File

@@ -5,7 +5,7 @@ import React from "react";
type StackProps = {
children: React.ReactNode;
gap?: number;
align?: "start" | "center" | "end";
align?: "start" | "center" | "end" | "baseline";
};
function RowStack({ children, gap, align }: StackProps) {