Currently, I am working on a sass mixin with the following structure:
@mixin hello($arg1, $arg2, $arg3) {
// content here
}
The challenge I am facing is to dynamically access the number of arguments within this mixin (in this case, it should be 3) in order to utilize it within the mixin itself.
Additionally, I would like to access the values of these arguments based on their index. My vision is something along the lines of:
argsList[0] = 'arg1'
Any insights on how I can achieve this?