21 lines
599 B
TypeScript
21 lines
599 B
TypeScript
import React from "react";
|
||
import { FaPlus } from "react-icons/fa";
|
||
|
||
interface AddWidgetButtonProps {
|
||
onClick: () => void;
|
||
}
|
||
|
||
export const AddWidgetButton: React.FC<AddWidgetButtonProps> = ({
|
||
onClick,
|
||
}) => {
|
||
return (
|
||
<button
|
||
onClick={onClick}
|
||
className="w-full py-1.5 bg-tertiary hover:bg-tertiary/70 rounded-lg border border-primary transition-colors flex items-center justify-center gap-1 cursor-pointer"
|
||
>
|
||
<FaPlus size={10} className="text-tertiary" />
|
||
<span className="text-[10px] text-secondary">Добавить график</span>
|
||
</button>
|
||
);
|
||
};
|