mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
24 lines
544 B
Text
24 lines
544 B
Text
load("//hack/bazel/js:react.bzl", "react_library")
|
|
load("//hack/bazel/js:jest.bzl", "jest_test")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
react_library(
|
|
name = "reset-submit",
|
|
deps = [
|
|
"react",
|
|
"react-icons",
|
|
"styled-components",
|
|
"//src/design-system/atoms/breakpoints",
|
|
"//src/design-system/atoms/button",
|
|
"@types/react",
|
|
"@types/styled-components",
|
|
],
|
|
)
|
|
|
|
jest_test(
|
|
src = ":reset-submit",
|
|
deps = [
|
|
"//src/design-system/atoms/button",
|
|
],
|
|
)
|