feat: re-order zoom buttons (#3837)

* feat: re-order zoom buttons

* undo last commit & change zoomOut/zoomIn order
This commit is contained in:
David Luzar 2021-07-16 23:47:43 +02:00 committed by GitHub
parent 5cae218f1b
commit b2c4552416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,8 +204,8 @@ export const ZoomActions = ({
}) => (
<Stack.Col gap={1}>
<Stack.Row gap={1} align="center">
{renderAction("zoomIn")}
{renderAction("zoomOut")}
{renderAction("zoomIn")}
{renderAction("resetZoom")}
</Stack.Row>
</Stack.Col>