feat(core): box-shadow support (#9161)

This commit is contained in:
Nathan Walker
2021-01-29 11:24:11 -08:00
parent d1d1b68d81
commit da84bd32fd
14 changed files with 364 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
import { Color } from '../../color';
export class BoxShadow {
public offsetX: number;
public offsetY: number;
public blurRadius: number;
public spreadRadius: number;
public color: Color;
}