1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00
2020-05-07 09:03:30 +03:00

15 lines
333 B
TypeScript

import React from 'react'
import styles from './Lists.module.css'
export function ListItem({ children, ol }: { children: any; ol?: boolean }) {
const classes = ol
? `${styles.item} ${styles.olItem}`
: `${styles.item} ${styles.ulItem}`
return (
<li className={classes}>
<span>{children}</span>
</li>
)
}