@sikka/hawa 0.1.13 → 0.1.14

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/styles.css CHANGED
@@ -2072,6 +2072,10 @@ video {
2072
2072
  padding-left: 0.375rem;
2073
2073
  padding-right: 0.375rem;
2074
2074
  }
2075
+ .px-10 {
2076
+ padding-left: 2.5rem;
2077
+ padding-right: 2.5rem;
2078
+ }
2075
2079
  .px-2 {
2076
2080
  padding-left: 0.5rem;
2077
2081
  padding-right: 0.5rem;
@@ -2,7 +2,7 @@ import * as React from "react";
2
2
  import { type VariantProps } from "class-variance-authority";
3
3
  declare const buttonVariants: (props?: {
4
4
  variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link";
5
- size?: "default" | "sm" | "lg" | "icon";
5
+ size?: "default" | "xs" | "sm" | "lg" | "xl" | "icon";
6
6
  } & import("class-variance-authority/dist/types").ClassProp) => string;
7
7
  export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
8
8
  asChild?: boolean;