Skip to content

Commit

Permalink
fix: wrong type exports from provisional package
Browse files Browse the repository at this point in the history
  • Loading branch information
abelflopes committed Jul 21, 2024
1 parent 242de04 commit 36e95c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/components/_provisional/src/attachment/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from "react";
import classNames from "classnames";
import { Button } from "@react-ck/button";
import { IconClose } from "@react-ck/icon/icons/IconClose";
import { Icon } from "@react-ck/icon/src";
import { Icon } from "@react-ck/icon";
import { IconDocument } from "@react-ck/icon/icons/IconDocument";
import { IconAttach } from "@react-ck/icon/icons/IconAttach";

Expand Down
2 changes: 1 addition & 1 deletion packages/components/_provisional/src/image/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ export const Image = ({
<>
{!shouldDisplay && <Skeleton className={className} />}
<img
alt={alt}
className={classNames(className, styles.root, {
[`${styles.fullwidth}`]: fullWidth,
})}
alt={alt}
onLoad={computedOnLoad}
onError={computedOnError}
{...otherProps}
Expand Down

0 comments on commit 36e95c6

Please sign in to comment.