Skip to content

Commit

Permalink
Change span type
Browse files Browse the repository at this point in the history
  • Loading branch information
Studio384 committed Feb 14, 2024
1 parent 7e9850a commit 8859038
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Amicon.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { IAmicon } from ".";
import HTMLReactParser from "html-react-parser";
import { cx, css, keyframes } from "@emotion/css";
import { HTMLProps } from "react";
import { ComponentPropsWithoutRef } from "react";

interface AmiconProps extends HTMLProps<HTMLSpanElement> {
interface AmiconProps extends ComponentPropsWithoutRef<"span"> {
icon: IAmicon;
rotate?: 0 | 90 | 180 | 270 | false;
flip?: true | "x" | "y" | false;
Expand Down

0 comments on commit 8859038

Please sign in to comment.