UNPKG

@elacity-js/uikit

Version:

React / Material UI Design kit for Elacity project

11 lines (10 loc) 333 B
/// <reference types="react" /> import type { SxProps } from '@mui/system'; interface LikeButtonProps { likeCount?: number; isLiked?: boolean; handlers?: [() => void, () => void]; sx?: SxProps; } declare const _default: ({ likeCount, isLiked, handlers, sx }: LikeButtonProps) => JSX.Element; export default _default;