tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
fixed typo in name on an icon
cozylittle.house
2 years ago
53c5dc55
769bb500
+3
-3
2 changed files
expand all
collapse all
unified
split
app
test
Blocks.tsx
components
Icons.tsx
+2
-2
app/test/Blocks.tsx
···
1
1
import { useState } from "react";
2
2
import {
3
3
BlockCardSmall,
4
4
-
CloseConstrastSmall,
4
4
+
CloseContrastSmall,
5
5
CloseTiny,
6
6
BlockImageSmall,
7
7
LinkSmall,
···
60
60
return (
61
61
<div className="pb-4 pt-2 relative group/image flex w-fit place-self-center justify-center">
62
62
<button className="absolute right-2 top-6 z-10 hidden group-hover/image:block">
63
63
-
<CloseConstrastSmall
63
63
+
<CloseContrastSmall
64
64
fill={theme.colors.primary}
65
65
outline={theme.colors["bg-card"]}
66
66
/>{" "}
+1
-1
components/Icons.tsx
···
104
104
);
105
105
};
106
106
107
107
-
export const CloseConstrastSmall = (props: {
107
107
+
export const CloseContrastSmall = (props: {
108
108
fill: string;
109
109
outline: string;
110
110
}) => {