Reflexjs
文档组件库指南GitHub
/
,

组件号召性用语组件

号召性用语 002
全屏查看

如何使用此组件

1. 复制组件源代码并将其放入 src/components/call-to-action-002.jsx 文件。

组件 (JavaScript)
import * as React from "react"
export default function Block({
subheading,
heading,
text,
buttons,
...props
}) {
return (
<section py="6|8|12|20" {...props}>
<div variant="container">
<div
display="flex"
flexDirection="column"
justifyContent="center"
alignItems="center"
textAlign="center"
>
{subheading && (
<p color="primary" textTransform="uppercase" m="0">
{subheading}
</p>
)}
{heading && (
<h1 variant="heading.h1" fontWeight="bolder" lineHeight="tight">
{heading}
</h1>
)}
{text && (
<p variant="text.lead" mt="2">
{text}
</p>
)}
{buttons}
</div>
</div>
</section>
)
}

2. 复制以下示例代码并添加到您的页面中。

用法 (JavaScript)
import * as React from "react"
import { Icon } from "reflexjs"
import Block from "../src/components/call-to-action-002"
export default function Example() {
return (
<Block
subheading="Subheading"
heading="Start building today"
text="Reiciendis quia totam esse. Dicta minus iusto quisquam doloribus temporibus."
buttons={
<a variant="button.accent.lg" href="#" mt="6">
Get started <Icon name="arrow-right" ml="2" size="4" />
</a>
}
/>
)
}

© 2022 Reflexjs

文档组件库指南GitHub