mirror of https://github.com/mkrhere/pw2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
247 B
14 lines
247 B
4 years ago
|
import React from "react";
|
||
5 years ago
|
import { css } from "emotion";
|
||
|
|
||
4 years ago
|
const Dashed: React.FunctionComponent = ({ children }) => (
|
||
5 years ago
|
<span
|
||
|
className={css`
|
||
|
border-bottom: 1px dashed var(--text-color);
|
||
|
`}>
|
||
4 years ago
|
{children}
|
||
5 years ago
|
</span>
|
||
|
);
|
||
|
|
||
|
export default Dashed;
|