////
///
/// Transforms Mixin Module
/// ===========================================================================
///
///
/// @group Transforms
/// @author Scape Agency
/// @link https://move.gl
/// @since 0.1.0 initial release
/// @todo None
/// @access public
///
////

///
/// Mixin for scaling elements by a specified factor.
///
/// @mixin scale
/// @param {Number} $factor [1] - The scaling factor.
/// @example scss - Usage
///   .icon_scale { @include scale(1.5); } // Scales the element by 1.5
///
@mixin scale($factor: 1) {
    transform: scale($factor);
}
