// Copyright (c) Mysten Labs, Inc. // Modifications Copyright (c) 2024 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 import { Slot } from '@radix-ui/react-slot'; import type { ComponentPropsWithoutRef, ElementRef, ReactNode } from 'react'; import { forwardRef } from 'react'; import { styleDataAttribute } from '../../constants/styleDataAttribute.js'; import './StyleMarker.css.js'; type StyleMarker = { children: ReactNode; }; export const StyleMarker = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ children, ...props }, forwardedRef) => ( {children} )); StyleMarker.displayName = 'StyleMarker';