"use client" import { useIntl } from "react-intl" import { ChevronDownIcon } from "@/components/Icons" import Button from "@/components/TempDesignSystem/Button" import { showMoreButtonVariants } from "./variants" import styles from "./showMoreButton.module.css" import type { ShowMoreButtonProps } from "./showMoreButton" export default function ShowMoreButton({ className, intent, disabled, showLess, loadMoreData, }: ShowMoreButtonProps) { const intl = useIntl() const classNames = showMoreButtonVariants({ className, intent, }) return (
) }