Skip to content

Commit

Permalink
Add failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mad-Kat committed Dec 30, 2024
1 parent c72fe9a commit acdd292
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { css } from "next-yak";

export const YakLogo = () => (
<div
css={css`
display: flex;
gap: 6px;
`}
>
Yak
</div>
);
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { css, __yak_mergeCssProp } from "next-yak/internal";
import __styleYak from "./input.yak.module.css!=!./input?./input.yak.module.css";
export const YakLogo = ()=><div {.../*YAK EXPORTED MIXIN:YakLogo
.YakLogo {
display: flex;
gap: 6px;
}
*/ /*#__PURE__*/ css()({})}>
Yak
</div>;
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { css, __yak_mergeCssProp } from "next-yak/internal";
import __styleYak from "./input.yak.module.css!=!./input?./input.yak.module.css";
export const YakLogo = ()=><div {.../*YAK EXPORTED MIXIN:YakLogo
.YakLogo {
display: flex;
gap: 6px;
}
*/ /*#__PURE__*/ css()({})}>
Yak
</div>;

0 comments on commit acdd292

Please sign in to comment.