phx-react
Version:
PHX REACT
24 lines (21 loc) • 553 B
JavaScript
import React from 'react';
export const SortableStyle = () => {
return (React.createElement("style", null, `
.phx-item-drag {
background-color: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
cursor: move;
}
.phx-item-chosen {
cursor: move;
}
.phx-item-ghost {
background-color: #f3f4f6;
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
cursor: move;
}
`));
};
//# sourceMappingURL=SortableStyle.js.map