diff --git a/package.json b/package.json index 8e07dfa..875941f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@neynar/react", - "version": "0.8.2", + "version": "0.8.3", "description": "Farcaster frontend component library powered by Neynar", "main": "dist/bundle.cjs.js", "module": "dist/bundle.es.js", diff --git a/src/components/atoms/icons/ExternalLinkIcon.tsx b/src/components/atoms/icons/ExternalLinkIcon.tsx index c1921bd..7fa2248 100644 --- a/src/components/atoms/icons/ExternalLinkIcon.tsx +++ b/src/components/atoms/icons/ExternalLinkIcon.tsx @@ -1,37 +1,10 @@ import React from 'react'; -interface ExternalLinkIconProps { - width?: number; - height?: number; - className?: string; - style?: React.CSSProperties; -} - -const ExternalLinkIcon: React.FC = ({ - width = 12, - height = 12, - className = 'ml-1 text-faint', - style = {}, -}) => { +const ExternalLinkIcon = () => { return ( -