Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
import React from "devtools/client/shared/vendor/react";
export default function FrameIndent({ indentLevel = 1 } = {}) {
// \xA0 represents the non breakable space
const indentWidth = 4 * indentLevel;
const nonBreakableSpaces = "\xA0".repeat(indentWidth);
return React.createElement(
"span",
{
className: "frame-indent clipboard-only",
},
nonBreakableSpaces
);
}