Available from: 2.0.0
Import
import { ShadowType } from "@supernovaio/sdk"
Cases
The following enumeration cases are available:
- drop: Represents a drop shadow type. Drop shadows are applied to elements to create a shadow effect that appears outside the element, simulating depth and elevation.
- inner: Represents an inner shadow type. Inner shadows are applied to elements to create a shadow effect that appears inside the element, providing a sense of recessed or inset appearance.
Formal definition
enum ShadowType {
drop = "Drop",
inner = "Inner",
}