@charset "UTF-8";

// @description
// * This file forwards modules related to the base, utilities, abstracts,
// * functions, mixins, helpers, and development utilities.

// @author Khaled Mohamed

// @license MIT

// @repository: https://github.com/Black-Axis/sass-pire

// @library sass-pire

// @version 5.0.0

// * forwarding the "abstract" module.
// * The "abstract" module may contain abstract styles or variables used
// * throughout the project.
// @see abstract
@forward "./src/abstract";

// * forwarding the "functions" module.
// * The "functions" module likely contains custom Sass functions for use
// * in stylesheets.
// @see functions
@forward "./src/functions";

// * forwarding the "mixins" module.
// * The "mixins" module probably contains reusable Sass mixins.
// @see mixins
@forward "./src/mixins";

// * forwarding the "helpers" module.
// * The "helpers" module may contain helper classes or functions for
// * simplifying styles.
// @see helpers
@forward "./src/helpers";

// * forwarding the "development-utils" module.
// * The "development-utils" module might contain utilities helpful
// * during development.
// @see development-utils
@forward "./src/development-utils";

// * There is a utility module for the sass-pire library
// * We need to import it to use the sass-pire library
// * But we don't want to import it in the sass-pire.scss file
// * because it will be rendered when import the sass-pire.scss file
// * You can use the following command to import the sass-pire utility module
// * @use "sass-pire/utils";
// * You can also import it to use in CSS layers easily.
