Types for box and text shadow properties

interface EffectProps {
    backgroundBlendMode?: ResponsiveValue<BackgroundBlendMode>;
    bgBlendMode?: ResponsiveValue<BackgroundBlendMode>;
    blendMode?: ResponsiveValue<MixBlendMode>;
    boxShadow?: ResponsiveValue<(number | BoxShadow)>;
    mixBlendMode?: ResponsiveValue<MixBlendMode>;
    opacity?: ResponsiveValue<Opacity>;
    shadow?: ResponsiveValue<(number | BoxShadow)>;
}

Hierarchy (view full)

Properties

backgroundBlendMode?: ResponsiveValue<BackgroundBlendMode>

The CSS background-blend-mode property

bgBlendMode?: ResponsiveValue<BackgroundBlendMode>

The CSS background-blend-mode property

blendMode?: ResponsiveValue<MixBlendMode>

The blend-mode property

boxShadow?: ResponsiveValue<(number | BoxShadow)>

The box-shadow property

mixBlendMode?: ResponsiveValue<MixBlendMode>

The mix-blend-mode property

opacity?: ResponsiveValue<Opacity>

The CSS opacity property

shadow?: ResponsiveValue<(number | BoxShadow)>

The box-shadow property

Generated using TypeDoc