'use client' import type { FC } from 'react' import React from 'react' import cn from 'classnames' import { RiAddLine, } from '@remixicon/react' type Props = { className?: string text: string onClick: () => void } const AddButton: FC = ({ className, text, onClick, }) => { return (
{text}
) } export default React.memo(AddButton)