hooks
4 years ago
images
4 years ago
BulkActionCheckbox.tsx
4 years ago
BulkActionSelect.module.scss
4 years ago
BulkActionSelect.tsx
4 years ago
Filters.tsx
4 years ago
FormSelect.module.scss
4 years ago
FormSelect.tsx
4 years ago
Input.module.scss
4 years ago
Input.tsx
4 years ago
ListTable.module.scss
4 years ago
ListTable.tsx
4 years ago
ListTablePage.module.scss
3 years ago
ListTableRows.module.scss
3 years ago
ListTableRows.tsx
4 years ago
Pagination.module.scss
4 years ago
Pagination.tsx
4 years ago
README.MD
4 years ago
RowAction.module.scss
4 years ago
RowAction.tsx
4 years ago
Select.module.scss
4 years ago
Select.tsx
4 years ago
TableCell.module.scss
4 years ago
TableCell.tsx
4 years ago
TestLabel.module.scss
4 years ago
TestLabel.tsx
4 years ago
TypeBadge.module.scss
4 years ago
TypeBadge.tsx
4 years ago
api.ts
4 years ago
index.tsx
4 years ago
TestLabel.tsx
13 lines
| 1 | import {__} from "@wordpress/i18n"; |
| 2 | import styles from "./TestLabel.module.scss"; |
| 3 | import cx from "classnames"; |
| 4 | |
| 5 | export default function TestLabel ({className = '', ...rest}) { |
| 6 | return ( |
| 7 | <div className={cx(styles.test, className)} {...rest}> |
| 8 | {__('test', 'give')} |
| 9 | <span className={'give-visually-hidden'}>{__(' donation', 'give')}</span> |
| 10 | </div> |
| 11 | ); |
| 12 | } |
| 13 |