@import '../helper';

@mixin float($prefix, $variants: (), $separator: '_') {
  $map-values: (
    right: right,
    left: left,
    none: none,
  );
  $map-props: (
    default: float,
  );

  @include style($prefix, float, $map-values, $map-props, $variants, $separator);
  @include raw-style($prefix, clearfix, $variants, $separator, '::after') {
    content: "";
    display: table;
    clear: both;
  }
}
