22 lines
368 B
TypeScript
Raw Permalink Normal View History

2021-05-24 12:59:02 -05:00
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}
/>
)
}