> = ['small', 'medium'];
-
-const flexWrapStyle = {
- display: 'flex',
- flexWrap: 'wrap',
- gap: '1rem',
-} as const;
-
-export const Default = meta.story({
- play: async ({ canvas }) => {
- await expect(canvas.getByRole('button', { name: 'Close' })).toBeInTheDocument();
- },
-});
-
-export const Sizes = meta.story({
- render: (props) => (
-
- {sizes.map((size) => (
-
- ))}
-
- ),
-});
-
-export const Disabled = meta.story({
- args: {
- isDisabled: true,
- },
- render: (props) => (
-
- {sizes.map((size) => (
-
- ))}
-
- ),
-});
diff --git a/packages/@luke-ui/react/src/close-button/index.tsx b/packages/@luke-ui/react/src/close-button/index.tsx
deleted file mode 100644
index 3f425766..00000000
--- a/packages/@luke-ui/react/src/close-button/index.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import type { JSX } from 'react';
-import type { IconButtonProps } from '../icon-button/index.js';
-import { IconButton } from '../icon-button/index.js';
-
-/**
- * Props for `CloseButton`.
- *
- * @tier composed
- */
-export interface CloseButtonProps extends Omit {}
-
-/** Icon button preset for close actions. */
-export function CloseButton(props: CloseButtonProps): JSX.Element {
- const { tone = 'ghost', ...iconButtonProps } = props;
-
- return ;
-}