Skip to content

Commit

Permalink
Replace chakra.span with Span
Browse files Browse the repository at this point in the history
  • Loading branch information
csandman committed Oct 12, 2024
1 parent 9bddbd2 commit 5362cab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/chakra-components/multi-value.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { ColorPalette, SystemStyleObject } from "@chakra-ui/react";
import { Box, chakra, useSlotRecipe } from "@chakra-ui/react";
import { Box, Span, useSlotRecipe } from "@chakra-ui/react";
import type {
GroupBase,
MultiValueGenericProps,
Expand Down Expand Up @@ -160,9 +160,9 @@ export const MultiValueContainer = <
const { children, innerProps, css } = props;

return (
<chakra.span {...innerProps} css={css}>
<Span {...innerProps} css={css}>
{children}
</chakra.span>
</Span>
);
};

Expand All @@ -176,9 +176,9 @@ export const MultiValueLabel = <
const { children, innerProps, css } = props;

return (
<chakra.span {...innerProps} css={css}>
<Span {...innerProps} css={css}>
{children}
</chakra.span>
</Span>
);
};

Expand Down

0 comments on commit 5362cab

Please sign in to comment.