@sikka/hawa 0.0.262 → 0.0.263

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
@@ -1054,18 +1054,12 @@ video {
1054
1054
  .w-\[12px\] {
1055
1055
  width: 12px;
1056
1056
  }
1057
- .w-\[160px\] {
1058
- width: 160px;
1059
- }
1060
1057
  .w-\[32px\] {
1061
1058
  width: 32px;
1062
1059
  }
1063
1060
  .w-\[400px\] {
1064
1061
  width: 400px;
1065
1062
  }
1066
- .w-\[56px\] {
1067
- width: 56px;
1068
- }
1069
1063
  .w-\[calc\(1\%\)\] {
1070
1064
  width: calc(1%);
1071
1065
  }
@@ -1690,10 +1684,6 @@ video {
1690
1684
  --tw-bg-opacity: 1;
1691
1685
  background-color: rgb(71 85 105 / var(--tw-bg-opacity));
1692
1686
  }
1693
- .bg-stone-600 {
1694
- --tw-bg-opacity: 1;
1695
- background-color: rgb(87 83 78 / var(--tw-bg-opacity));
1696
- }
1697
1687
  .bg-transparent {
1698
1688
  background-color: transparent;
1699
1689
  }
@@ -1713,10 +1703,6 @@ video {
1713
1703
  --tw-bg-opacity: 1;
1714
1704
  background-color: rgb(250 204 21 / var(--tw-bg-opacity));
1715
1705
  }
1716
- .bg-yellow-500 {
1717
- --tw-bg-opacity: 1;
1718
- background-color: rgb(234 179 8 / var(--tw-bg-opacity));
1719
- }
1720
1706
  .bg-opacity-75 {
1721
1707
  --tw-bg-opacity: 0.75;
1722
1708
  }
@@ -1726,6 +1712,12 @@ video {
1726
1712
  .bg-none {
1727
1713
  background-image: none;
1728
1714
  }
1715
+ .fill-buttonPrimary-500 {
1716
+ fill: var(--button-primary-500);
1717
+ }
1718
+ .fill-gray-200 {
1719
+ fill: #e5e7eb;
1720
+ }
1729
1721
  .object-cover {
1730
1722
  -o-object-fit: cover;
1731
1723
  object-fit: cover;
@@ -2,6 +2,7 @@ import { FC } from "react";
2
2
  type CodeBlockTypes = {
3
3
  color?: "dark" | "light";
4
4
  language?: string;
5
+ width?: "full" | "md" | "sm";
5
6
  tabs?: TabsTypes[];
6
7
  code?: string;
7
8
  };