@engrate/components 0.1.18 → 0.1.20

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.
@@ -3,7 +3,7 @@ import * as React from 'react';
3
3
  declare const cardVariants: (props?: ({
4
4
  variant?: "default" | "ghost" | "elevated" | null | undefined;
5
5
  padding?: "default" | "none" | "sm" | "lg" | null | undefined;
6
- bg?: "contrast" | "main" | "sunflower" | "lemon-meringue" | "vanilla" | "eggshell" | "warm-purple" | "cool-purple" | "electric-blue" | "deep-blue" | "error" | "transparent" | "card" | "alt" | "sunflower-hover" | null | undefined;
6
+ bg?: "contrast" | "default" | "main" | "sunflower" | "lemon-meringue" | "vanilla" | "eggshell" | "warm-purple" | "cool-purple" | "electric-blue" | "deep-blue" | "error" | "transparent" | "card" | "alt" | "sunflower-hover" | null | undefined;
7
7
  accent?: "none" | "sunflower" | "warm-purple" | "cool-purple" | "electric-blue" | "deep-blue" | "error" | "border" | null | undefined;
8
8
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
9
9
  interface CardProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
@@ -97,7 +97,7 @@ interface SidebarLogoProps extends Omit<EngrateLogoProps, 'compact'> {
97
97
  * </Sidebar>
98
98
  * ```
99
99
  */
100
- declare function SidebarLogo({ ...props }: SidebarLogoProps): import("react/jsx-runtime").JSX.Element;
100
+ declare function SidebarLogo({ ...props }: SidebarLogoProps): import("react/jsx-runtime").JSX.Element | null;
101
101
  declare namespace SidebarLogo {
102
102
  var displayName: string;
103
103
  }