generates a style tag with the generated tailwind classes within
npm install tailwind-to-css``bash`
npm i tailwind-to-css
yarn add tailwind-to-css
`js
import {createStyle} from 'tailwind-to-css'
// Input
createStyle(
,
false).then((data) =>
{
console.log(data);
})// Output
// console --> ''
`$3
The createStyle function takes in two parameters
`js
createStyle(HTML_STRING, withDefault)
``| Option | Default | Required |
| ----------- | ----------- | ---------- |
| HTML_STRING | undefined | true |
| withDefault | true | false |