@grantbii/design-system 1.0.68 → 1.0.69

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.
@@ -1,11 +1,11 @@
1
1
  "use client";
2
2
  import { jsx as _jsx } from "react/jsx-runtime";
3
3
  import Image from "next/image";
4
+ import styled from "styled-components";
4
5
  import darkLogo from "../assets/logos/brand_logo-dark.webp";
5
6
  import lightLogo from "../assets/logos/brand_logo-light.webp";
6
- import styled from "styled-components";
7
7
  import { Responsive } from "../foundations";
8
- const BrandLogo = ({ isDarkTheme = true, alt = "Grantbii", }) => (_jsx(CustomImage, { src: isDarkTheme ? darkLogo : lightLogo, alt: alt, priority: true }));
8
+ const BrandLogo = ({ isDarkTheme = true, alt = "Grantbii", }) => (_jsx(CustomImage, { src: isDarkTheme ? darkLogo : lightLogo, width: 250, height: 80, alt: alt, priority: true }));
9
9
  export default BrandLogo;
10
10
  const CustomImage = styled(Image) `
11
11
  @media (width < ${Responsive.WIDTH_BREAKPOINTS.laptop}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grantbii/design-system",
3
- "version": "1.0.68",
3
+ "version": "1.0.69",
4
4
  "description": "Grantbii's Design System",
5
5
  "homepage": "https://design.grantbii.com",
6
6
  "repository": {