This commit is contained in:
Nate Butler 2023-04-11 12:23:21 -04:00
parent 527f0310e2
commit 975f5d5fa8
8 changed files with 141 additions and 69 deletions

View file

@ -281,14 +281,18 @@ export function border(
}
}
export function svg(color: string, asset: String, width: Number, height: Number) {
export function svg(
color: string,
asset: String,
width: Number,
height: Number
) {
return {
color,
asset,
dimensions: {
width,
height,
}
},
}
}