// Hydrogen / Components / Card

@mixin h2-component-card-reset() {}

@mixin h2-component-card-generic(
  $shadow
) {
  box-shadow: $shadow;
}

@mixin h2-component-card-color(
  $color
) {
  background-color: $color;
}

@mixin h2-component-card-radius(
  $radius
) {
  border-radius: $radius;
}