UNPKG

react-animated-heart

Version:

Simple Twitter-like animated heart

10 lines (8 loc) 240 B
/// <reference types="react" /> interface HeartProp { isClick: boolean; styles?: any; onClick: () => void; } declare function Heart({ isClick, onClick, styles }: HeartProp): JSX.Element; export { HeartProp, Heart as default };