23 lines
879 B
Plaintext
23 lines
879 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`transform css vars 1`] = `
|
|
"<script setup lang=\\"ts\\"></script>
|
|
<template>
|
|
<div class=\\"bg-background hover:bg-muted text-primary-foreground sm:focus:text-accent-foreground\\">foo</div>
|
|
</template>\\""
|
|
`;
|
|
|
|
exports[`transform css vars 2`] = `
|
|
"<script setup lang=\\"ts\\"></script>
|
|
<template>
|
|
<div class=\\"bg-white hover:bg-stone-100 text-stone-50 sm:focus:text-stone-900 dark:bg-stone-950 dark:hover:bg-stone-800 dark:text-stone-900 dark:sm:focus:text-stone-50\\">foo</div>
|
|
</template>\\""
|
|
`;
|
|
|
|
exports[`transform css vars 3`] = `
|
|
"<script setup lang=\\"ts\\"></script>
|
|
<template>
|
|
<div :class=\\"cn( 'bg-white hover:bg-stone-100 dark:bg-stone-950 dark:hover:bg-stone-800', true && 'text-stone-50 sm:focus:text-stone-900 dark:text-stone-900 dark:sm:focus:text-stone-50')\\" >foo</div>
|
|
</template>\\""
|
|
`;
|