Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 10x 10x 1x 1x 1x 1x 1x 1x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 1x 1x 1x 1x 1x 1x | 'use client';
import React, { ButtonHTMLAttributes } from 'react';
import * as m from 'motion/react-m';
import { cn } from '@/lib/utils';
interface ToggleButtonProps extends Omit<ButtonProps, 'value'> {
value?: boolean;
}
export const MyPageToggleButton = ({ children, value = false, ...props }: ToggleButtonProps) => {
return (
<Button {...props}>
{children}
<ToggleUI value={value} />
</Button>
);
};
type ActionButtonProps = ButtonProps;
export const MyPageActionButton = ({ children, ...props }: ActionButtonProps) => {
return <Button {...props}>{children}</Button>;
};
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
children: React.ReactNode;
}
const Button = ({ children, ...props }: ButtonProps) => {
return (
<button
className={cn(
'text-text-sm-semibold flex cursor-pointer flex-row items-center justify-between rounded-xl px-3 py-3 text-gray-700', // basic
'hover:bg-gray-50', // hover
'transition-all duration-300', //animation
)}
{...props}
>
{children}
</button>
);
};
interface ToggleUIProps {
value?: boolean;
}
const ToggleUI = ({ value = false }: ToggleUIProps) => {
return (
<m.div
className={cn(
'h-5 w-9 cursor-pointer rounded-full p-0.5',
value && 'bg-mint-500',
!value && 'bg-gray-300',
'transition-colors duration-300',
)}
>
<m.div
className='bg-mono-white size-4 rounded-full'
animate={{ x: value ? 16 : 0 }}
transition={{
type: 'spring',
duration: 0.3,
bounce: 0.3,
}}
/>
</m.div>
);
};
|