mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
export default function VTSequence({ sequence }) {
|
|
return (
|
|
<div className="flex my-2.5">
|
|
<div className="border shrink px-1 grid grid-rows-2 grid-cols-1 text-center">
|
|
<div>0x08</div>
|
|
<div>{sequence}</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const special = {
|
|
BS: 0x08,
|
|
};
|