fix(Map): Update lifetime design and buttons

This commit is contained in:
DanSylvest
2025-09-13 19:17:00 +03:00
parent 33acd55eaa
commit c789b69b54
30 changed files with 193 additions and 134 deletions

View File

@@ -0,0 +1,7 @@
// eslint-disable-next-line no-restricted-imports
import { Button, ButtonProps } from 'primereact/button';
export const WdButton = ({ type = 'button', ...props }: ButtonProps) => {
// eslint-disable-next-line react/forbid-elements
return <Button {...props} type={type} />;
};