12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import { Button } from 'ui';
|
||
|
||
export function Buttons() {
|
||
return (
|
||
<div className="grid grid-cols-1 gap-2 gap-x-4 md:grid-cols-3">
|
||
<Button intent="outline-danger">Отмена</Button>
|
||
<Button intent="secondary">Возврат на доработку</Button>
|
||
<Button>Сохранить</Button>
|
||
</div>
|
||
);
|
||
}
|