@charset "UTF-8";

// @description
// * banner mixin.
// * The `banner` mixin is used to add a banner to the top of the CSS file
// * during compilation.
// * This banner typically includes information such as library name,
// * version, copyright, and license.

// @access private

// @version 1.0.0

// @author Khaled Mohamed

// @license MIT

// @repository: https://github.com/Black-Axis/sass-pire

// @namespace general

// @module general/banner

// @dependencies:
// * - var.$lib-name (variable).
// * - var.$current-version (variable).
// * - var.$current-year (variable).
// * - var.$organization-name (variable).
// * - var.$author-name (variable).

// @note:
// * In your ~/base/reset.scss file, include the following line at the top:
// * @use "abstract/variables" as var;
// * @include banner();
// * This will insert the library banner at the beginning of
// * the compiled CSS file.

// stylelint-disable comment-empty-line-before

@use "../../abstract/settings" as Settings;

@mixin banner() {
/*
***** #{Settings.$lib-name} library #{Settings.$current-version}

***** Copyright © #{Settings.$current-year} for #{Settings.$lib-name} authors.

***** All copyrights reserved to #{Settings.$organization-name} Organization owners.

***** Author(s):
***** #{Settings.$author-names}.

***** Licensed under MIT.

***** To make a reset for CSS, We used the reset-zone library.
*/
}