@import '../../../scss/index.scss';

// Спинер
@mixin spiner () {

	$size: 30px;

	@keyframes rotate {
		100% {
			transform: rotate(360deg);
		}
	}

	width: $size;
	height: $size;

	// Фикс
	&,
	& * {
		@include fix();
	}

	.icon {
		width: $size;
		height: $size;
		fill: $fill;
		animation: rotate 0.7s linear infinite;
	}
}
