load("//hack/bazel/js:react.bzl", "react_library") load("//hack/bazel/js:jest.bzl", "jest_test") package(default_visibility = ["//visibility:public"]) react_library( name = "server-masthead", deps = [ "next", "react-icons", "//src/design-system/atoms/avatar", "//src/design-system/atoms/colors", "//src/design-system/atoms/timings", "//src/design-system/atoms/typography", "//src/design-system/shared-types", ], ) jest_test( src = ":server-masthead", deps = [ "//src/design-system/shared-types", ], )