// Lightning Design System 2.29.1
// Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
// Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license

@mixin appearance($value) {
  /* stylelint-disable property-no-vendor-prefix */
  -moz-appearance: $value;
  -webkit-appearance: $value;
  appearance: $value;
}
