Migrate to a monorepo structure (#2909)
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
import { LightButton } from '@/ui/input/button/components/LightButton';
|
||||
|
||||
type CancelButtonProps = {
|
||||
onCancel?: () => void;
|
||||
};
|
||||
|
||||
export const CancelButton = ({ onCancel }: CancelButtonProps) => {
|
||||
return <LightButton title="Cancel" accent="tertiary" onClick={onCancel} />;
|
||||
};
|
||||
Reference in New Issue
Block a user