Add Zen mode for distraction free drawing (#1450)

This commit is contained in:
Aakansha Doshi
2020-04-25 15:13:02 +02:00
committed by GitHub
parent 71e7f130bc
commit 1866074c07
16 changed files with 222 additions and 39 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
import "./Island.css";
import "./Island.scss";
import React from "react";
type IslandProps = {
children: React.ReactNode;
padding?: number;
className?: string;
className?: string | boolean;
style?: object;
};