File size: 249 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 |
import { createBitAttrs } from "../../internal/index.js";
export function getLabelData() {
const NAME = "label";
const PARTS = ["root"];
const getAttrs = createBitAttrs(NAME, PARTS);
return {
NAME,
getAttrs,
};
}
|