- Substitui a fonte "Outfit" pela "Funnel_Display" no arquivo font_index.ts. - Atualiza a referência da fonte principal para "anthropic_sans" e define "funnel_display" como a fonte para "money_font" e "title_font". - Modifica o arquivo SVG do avatar 015, alterando a cor de preenchimento de alguns elementos para um tom mais vibrante (#F96837).
28 lines
533 B
TypeScript
28 lines
533 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import { Button } from "../ui/button";
|
|
|
|
interface ReturnButtonProps {
|
|
disabled?: boolean;
|
|
onClick: () => void;
|
|
}
|
|
|
|
const ReturnButton = React.memo(({ disabled, onClick }: ReturnButtonProps) => {
|
|
return (
|
|
<Button
|
|
className="w-28 h-6 rounded-sm"
|
|
size="sm"
|
|
disabled={disabled}
|
|
onClick={onClick}
|
|
aria-label="Retornar para o mês atual"
|
|
>
|
|
Mês Atual
|
|
</Button>
|
|
);
|
|
});
|
|
|
|
ReturnButton.displayName = "ReturnButton";
|
|
|
|
export default ReturnButton;
|