@import "../../settings/variables";

@mixin animate($keyframe, $delay: 0, $duration: $animation-duration, $timing-function: ease, $direction: normal, $iteration-count: 1) {
  $animation-value: unquote($keyframe + ' ' + $duration + 's ' + $timing-function + ' ' + $delay + 's ' + $iteration-count + ' ' + $direction);
  animation: $animation-value;
}
