Skip to content

Commit

Permalink
fixing files that had stroke icon
Browse files Browse the repository at this point in the history
  • Loading branch information
pinotalexandre committed Jan 3, 2025
1 parent ee10e6a commit 37e3bdf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions sparkle/src/components/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { cva } from "class-variance-authority";
import React, { forwardRef } from "react";

import { Icon } from "@sparkle/components/Icon";
import { InformationCircleStrokeIcon } from "@sparkle/icons";
import { InformationCircleIcon } from "@sparkle/icons";
import { cn } from "@sparkle/lib/utils";

import { Label } from "./Label";
Expand Down Expand Up @@ -108,7 +108,7 @@ export const Input = forwardRef<HTMLInputElement, InputProps>(
)}
>
{messageStatus === "info" && (
<Icon visual={InformationCircleStrokeIcon} size="xs" />
<Icon visual={InformationCircleIcon} size="xs" />
)}
{message}
</div>
Expand Down
8 changes: 2 additions & 6 deletions sparkle/src/stories/IconToggleButton.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import {
Cog6ToothIcon,
Cog6ToothStrokeIcon,
IconToggleButton,
} from "../index_with_tw_base";
import { Cog6ToothIcon, IconToggleButton } from "../index_with_tw_base";

const meta = {
title: "Primitives/IconToggleButton",
Expand All @@ -18,7 +14,7 @@ export const IconToggleButtonSecondary: Story = {
args: {
variant: "secondary",
tooltip: "This a secondary IconButton",
icon: Cog6ToothStrokeIcon,
icon: Cog6ToothIcon,
iconSelected: Cog6ToothIcon,
selected: false,
},
Expand Down

0 comments on commit 37e3bdf

Please sign in to comment.