@elia-ori/editor 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4160,9 +4160,9 @@ import { jsx } from "react/jsx-runtime";
|
|
|
4160
4160
|
var Button = React.forwardRef(
|
|
4161
4161
|
({ className, variant = "default", size = "default", ...props }, ref) => {
|
|
4162
4162
|
const variantStyles = {
|
|
4163
|
-
default: "bg-
|
|
4164
|
-
ghost: "hover:bg-
|
|
4165
|
-
outline: "border border-
|
|
4163
|
+
default: "bg-transparent text-zinc-700 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-zinc-800",
|
|
4164
|
+
ghost: "hover:bg-zinc-100 dark:hover:bg-zinc-800",
|
|
4165
|
+
outline: "border border-zinc-200 dark:border-zinc-700 bg-transparent hover:bg-zinc-100 dark:hover:bg-zinc-800"
|
|
4166
4166
|
};
|
|
4167
4167
|
const sizeStyles = {
|
|
4168
4168
|
default: "h-9 px-4 py-2",
|