import React, { FC, useState, useCallback, useRef } from 'react'; import { motion } from 'framer-motion'; interface LiveProjectButtonProps { children: React.ReactNode; } /** * Ghost/outline pill button for live project links. */ export const LiveProjectButton: FC = ({ children }) => { return ( {children} ); };