+
+ {component} copied to your clipboard
+
+ ,
+ { position: 'bottom-center' }
+ )
+}
+
+const StyledCard = styled(Card)`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: xl;
+ color: dark-900;
+ border-radius: xl;
+ cursor: pointer;
+
+ &,
+ & span {
+ transition: medium;
+ }
+
+ &:hover {
+ border-color: dark-900;
+ span {
+ color: dark-900;
+ }
+ }
+`
+
export const IconsList = ({ isIconFont, name }: IconListProps) => {
const iconsByName = {
arrows: arrows,
@@ -66,15 +105,7 @@ export const IconsList = ({ isIconFont, name }: IconListProps) => {
}
return (
-