We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 364a08f commit 1a6f5f0Copy full SHA for 1a6f5f0
3 files changed
packages/lib/.storybook/components/ExampleContainer.tsx
@@ -1,7 +1,7 @@
1
import { ReactNode } from "react";
2
import styled from "@emotion/styled";
3
4
-type PseudoStates =
+export type PseudoState =
5
| "pseudo-active"
6
| "pseudo-focus"
7
| "pseudo-focus-visible"
@@ -13,7 +13,7 @@ type PseudoStates =
13
14
type Props = {
15
children?: ReactNode;
16
- pseudoState?: PseudoStates | PseudoStates[];
+ pseudoState?: PseudoState | PseudoState[];
17
expanded?: boolean;
18
};
19
0 commit comments