mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-17 07:45:32 -04:00
even more styled components
This commit is contained in:
25
components/List/List.tsx
Normal file
25
components/List/List.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { ReactNode } from "react";
|
||||
|
||||
import styles from "./List.module.css";
|
||||
|
||||
type Props = {
|
||||
children: ReactNode;
|
||||
};
|
||||
|
||||
export const UnorderedList = ({ children, ...rest }: Props) => (
|
||||
<ul className={styles.unordered} {...rest}>
|
||||
{children}
|
||||
</ul>
|
||||
);
|
||||
export const OrderedList = ({ children, ...rest }: Props) => (
|
||||
<ol className={styles.ordered} {...rest}>
|
||||
{children}
|
||||
</ol>
|
||||
);
|
||||
|
||||
// TODO: this is based on good faith that the children are all `<li>`s...
|
||||
export const ListItem = ({ children, ...rest }: Props) => (
|
||||
<li className={styles.item} {...rest}>
|
||||
{children}
|
||||
</li>
|
||||
);
|
Reference in New Issue
Block a user