We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cab3f34 + e8158db commit 1cd8ad0Copy full SHA for 1cd8ad0
src/Tile.tsx
@@ -53,9 +53,9 @@ export type TileProps = {
53
noBackground?: boolean;
54
disabled?: boolean;
55
style?: CSSProperties;
56
-} & (TileNextProps.WithLink | TileNextProps.WithButton | TileNextProps.Unclickable);
+} & (TileProps.WithLink | TileProps.WithButton | TileProps.Unclickable);
57
58
-export namespace TileNextProps {
+export namespace TileProps {
59
export type Unclickable = {
60
linkProps?: never;
61
buttonProps?: never;
@@ -226,6 +226,6 @@ export const Tile = memo(
226
})
227
);
228
229
-Tile.displayName = symToStr({ TileNext: Tile });
+Tile.displayName = symToStr({ Tile });
230
231
export default Tile;
0 commit comments