summaryrefslogtreecommitdiff
path: root/bs5/universal/native/shared/Hr.re
blob: bee64e38f94dd1bdcd9a53608aca264555d75d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
[@react.component]
let make = () => {
  <hr
    className={Cx.make([
      "block",
      "w-full",
      "h-[1px]",
      "border-0 border-b-2",
      Theme.border(Theme.Color.Gray7),
    ])}
  />;
};