Skip to content

Commit 21ce788

Browse files
committed
wip
1 parent 1977a12 commit 21ce788

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+485
-0
lines changed

website/docs/products/software/dm-debugging-tool.mdx

Lines changed: 448 additions & 0 deletions
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Copyright 2026 Enactic, Inc.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
import React, {
16+
type ReactNode
17+
} from 'react';
18+
19+
export interface InlineImageProps {
20+
src: string;
21+
alt: string;
22+
width: string;
23+
}
24+
25+
export default function BlockImage({ src, alt, width }: InlineImageProps): ReactNode {
26+
return (
27+
<img
28+
src={require(`@site/static/img/${src}`).default}
29+
alt={alt}
30+
style={{
31+
display: 'inline',
32+
width: width,
33+
}}
34+
/>
35+
);
36+
}
37+
55.5 KB
1.94 KB
1.96 KB
2.27 KB
3.07 KB
1.95 KB
2.17 KB
2.23 KB

0 commit comments

Comments
 (0)