MYDS Logo

    MYDS

    Beta

    Cookies Banner

    Notifies users that the website uses cookies to improve their experience and gives them the option to manage their consent preferences through cookie settings. It typically appears when a user lands on the website for the first time.

    Usage

    Import
    import {
      CookieBanner,
      CookieBannerClose,
      CookieBannerDescription,
      CookieBannerAction,
      CookieBannerPreferences,
      CookieBannerTitle,
      CookieBannerPreferencesTrigger,
    } from "@govtechmy/myds-react/cookie-banner";
    Anatomy
    export default () => (
      <CookieBanner>
        <CookieBannerTitle />
        <CookieBannerDescription />
        <CookieBannerPreferences />
        <CookieBannerAction>
          <CookieBannerClose />
        </CookieBannerAction>
      </CookieBanner>
    );

    Examples

    Uncontrolled vs Controlled State

    Cookie Banner can be handled as a controlled or uncontrolled component.

    • To use as an uncontrolled component, define the defaultOpen prop as initial state.
    • To use as a controlled component, replace with the open and onOpenChange props.

    Below is an example of a controlled Cookie Banner.

    Note

    We recommend to keep CookieBanner as an uncontrolled component (via defaultOpen). You may use client-side storage APIs such as localStorage or sessionStorage to store the state, and retrieve it when the user visits the website again.

    Preference Call-to-Action (CTA)

    CookieBannerAction is responsible for displaying the call-to-action (CTAs) for the cookie banner. However, when allowing user to choose their cookie preferences, you may want to present a different CTAs. With CookieBannerAction, simply pass the preferences prop to display the preference CTAs.

    Note

    Use CookieBannerPreferencesTrigger to toggle the visibility of cookie preference options!

    Props

    CookieBanner

    PropTypeDefault
    defaultOpen
    boolean
    false
    open
    boolean
    false
    onOpenChange
    (value: boolean) => void
    -

    CookieBannerTitle

    PropTypeDefault
    children
    ReactNode
    -

    CookieBannerDescription

    PropTypeDefault
    children
    ReactNode
    -

    CookieBannerPreferences

    PropTypeDefault
    children
    ReactNode
    -

    CookieBannerPreferencesTrigger

    PropTypeDefault
    asChild
    boolean
    -
    children
    ReactNode
    -

    CookieBannerAction

    PropTypeDefault
    preferences
    boolean
    -
    children
    ReactNode
    -

    CookieBannerClose

    PropTypeDefault
    asChild
    boolean
    -
    children
    ReactNode
    -

    On this page