🔥 遇见我们的新项目 t0ggles - 你最终的项目管理工具! 🔥

列表按钮 React 组件

ListButton 旨在用于 List React 组件 中。

列表按钮组件

包含以下组件

  • ListButton

ListButton 属性

名称类型默认值描述
颜色对象

带有 Tailwind CSS 颜色类的对象

colors.activeBgIos字符串'active:bg-primary active:bg-opacity-15'
colors.activeBgMaterial字符串''
colors.textIos字符串'text-primary'
colors.textMaterial字符串'text-md-light-primary dark:text-md-dark-primary'
colors.touchRipple字符串'touch-ripple-primary'
组件字符串'li'

组件的 HTML 元素

href字符串

按钮的链接 href 属性

linkComponent字符串'a'

按钮 HTML 元素

linkProps任何

传递给链接/按钮的其他属性(属性)的对象

目标字符串

按钮的链接 target 属性

touchRipple布尔值真的

在 Material 主题中启用触摸涟漪效果

类型字符串未定义

按钮的 type 属性(如果作为 <button> 渲染,使用 linkComponent: 'button'

价值任何

按钮的 type 属性(如果作为 <button> 渲染,使用 linkComponent: 'button'

示例

ListButton.jsx
import React from 'react';
import { Page, Navbar, NavbarBackLink, List, ListButton } from 'konsta/react';
export default function ListButtonPage() {
return (
<Page>
<Navbar
title="List Button"
/>
<List strong outlineIos>
<ListButton>Button 1</ListButton>
<ListButton>Button 2</ListButton>
<ListButton>Button 3</ListButton>
</List>
<List inset strong>
<ListButton>Button 1</ListButton>
<ListButton>Button 2</ListButton>
<ListButton>Button 3</ListButton>
</List>
<List inset strong>
<ListButton className="k-color-brand-red">Red Button</ListButton>
</List>
</Page>
);
}
代码许可证 MIT.
2022 © Konsta UI 作者 nolimits4web.