// COMPONENT : Icons

svg {
	&.icon {
		@include svg-icon;
	}

	&.rotate {
		animation: rotation 2s infinite linear;
		transform-origin: 50% 50%;
	}
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}
