angular/adev/shared-docs/pipeline/api-gen/rendering/templates/code-line-group.tsx
Matthieu Riegler 6270bba056 ci: reformat files
This is after we've slightly changed a rule in #66056
2025-12-16 14:44:19 -08:00

25 lines
651 B
TypeScript

/*!
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import {h} from 'preact';
import {CodeLineRenderable} from '../entities/renderables.mjs';
import {CodeLine} from './code-line';
export function CodeLineGroup(props: {lines: CodeLineRenderable[]}) {
if (props.lines.length > 1) {
return (
<div class="shiki-ln-group">
{props.lines.map((line) => (
<CodeLine line={line} />
))}
</div>
);
} else {
return <CodeLine line={props.lines[0]} />;
}
}