diff options
Diffstat (limited to 'src/components/atoms/lists/list/list-item.tsx')
| -rw-r--r-- | src/components/atoms/lists/list/list-item.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/atoms/lists/list/list-item.tsx b/src/components/atoms/lists/list/list-item.tsx new file mode 100644 index 0000000..3438eac --- /dev/null +++ b/src/components/atoms/lists/list/list-item.tsx @@ -0,0 +1,23 @@ +import type { FC, LiHTMLAttributes } from 'react'; +import styles from './list.module.scss'; + +export type ListItemProps = LiHTMLAttributes<HTMLElement>; + +/** + * ListItem component + * + * Used it inside a `<List />` component. + */ +export const ListItem: FC<ListItemProps> = ({ + children, + className = '', + ...props +}) => { + const itemClass = `${styles.item} ${className}`; + + return ( + <li {...props} className={itemClass}> + {children} + </li> + ); +}; |
