mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
1a176fd118
* Refactor add to playlist modal * redesign base modal component, add ModalButton component * improve visibility of filled button focus --------- Co-authored-by: jeffvli <jeffvictorli@gmail.com>
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import { Button, ButtonProps } from '/@/shared/components/button/button';
|
|
|
|
export const ModalButton = ({ children, ...props }: ButtonProps) => {
|
|
return (
|
|
<Button px="2xl" uppercase variant="subtle" {...props}>
|
|
{children}
|
|
</Button>
|
|
);
|
|
};
|