a tool for shared writing and social publishing

fixed typo in name on an icon

+3 -3
+2 -2
app/test/Blocks.tsx
··· 1 1 import { useState } from "react"; 2 2 import { 3 3 BlockCardSmall, 4 - CloseConstrastSmall, 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 - <CloseConstrastSmall 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 - export const CloseConstrastSmall = (props: { 107 + export const CloseContrastSmall = (props: { 108 108 fill: string; 109 109 outline: string; 110 110 }) => {