feat(background): Allow background height/width to be set

* allow for bgColor to be set
* allow for no pattern to be used
This commit is contained in:
Braks
2022-03-14 14:10:38 +01:00
parent d948f5eef4
commit 2fa7e22b5f
4 changed files with 38 additions and 9 deletions
+6 -1
View File
@@ -38,8 +38,13 @@ export interface HandleProps {
export interface BackgroundProps {
variant?: BackgroundVariant
gap?: number
color?: string
patternColor?: string
bgColor?: string
size?: number
height?: number
width?: number
x?: number
y?: number
}
export interface ControlProps {