22 lines
368 B
TypeScript
22 lines
368 B
TypeScript
import TextSplitWithImage from '@hashicorp/react-text-split-with-image'
|
|
|
|
export default function IntegrationsTextSplit({
|
|
heading,
|
|
links,
|
|
content,
|
|
image,
|
|
}) {
|
|
return (
|
|
<TextSplitWithImage
|
|
textSplit={{
|
|
heading,
|
|
product: 'packer',
|
|
content,
|
|
linkStyle: 'buttons',
|
|
links,
|
|
}}
|
|
image={image}
|
|
/>
|
|
)
|
|
}
|