@import '../shape/icon';

////
/// @group schemas
/// @access private
/// @author <a href="https://github.com/desig9stein" target="_blank">Marin Popov</a>
////

/// Generates a light icon schema.
/// @type {Map}
///
/// @property {Color} color [currentColor] - The icon color.
/// @property {String} size [rem(24px)] - The icon size.
/// @property {Color} disabled-color [currentColor] - The disabled icon color.
///
/// @see $default-palette

$_light-icon: (
    color: currentColor,
    size: rem(24px),
    disabled-color: currentColor
);

/// Generates a fluent icon schema.
/// @type {Map}
///
/// @requires {function} extend
/// @requires {map} $_light-icon
$_fluent-icon: extend($_light-icon);
