This repository was archived by the owner on Sep 26, 2023. It is now read-only.

Description
Is your feature request related to a problem? Please describe.
Currently, users have to invoke quark every time they want to use another element with styles. That can clutter up a component real fast if they want to use many different element types, as you would for example when making a table.
Describe the solution you'd like
Allow quark function to take any number of arguments, and iterate over each to return a tuple of returned components if more than one is provided. Ex:
const [Div, P, A, Span] = quark('div', 'p', 'a', 'span');
Describe alternatives you've considered
Keep current functionality.
Additional context
None