1 | "use client";
|
2 |
|
3 | import * as React from 'react';
|
4 | import classNames from 'classnames';
|
5 | import { useBootstrapPrefix } from './ThemeProvider';
|
6 | import { jsx as _jsx } from "react/jsx-runtime";
|
7 | const CardImgOverlay = React.forwardRef(({
|
8 | className,
|
9 | bsPrefix,
|
10 | as: Component = 'div',
|
11 | ...props
|
12 | }, ref) => {
|
13 | bsPrefix = useBootstrapPrefix(bsPrefix, 'card-img-overlay');
|
14 | return _jsx(Component, {
|
15 | ref: ref,
|
16 | className: classNames(className, bsPrefix),
|
17 | ...props
|
18 | });
|
19 | });
|
20 | CardImgOverlay.displayName = 'CardImgOverlay';
|
21 | export default CardImgOverlay; |
\ | No newline at end of file |