UNPKG
@isotope/prototope
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.1
Isotope-based JavaScript library for speedy UI prototyping
areknawo.com/prototope
Isotope-js/isotope
@isotope/prototope
/
src
/
utils
/
typography
/
text-decoration.ts
8 lines
(5 loc)
•
279 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import { createUtil }
from
"../util"
;
const
underline
=
createUtil
({
textDecoration
:
"underline"
});
const
lineThrough
=
createUtil
({
textDecoration
:
"line-through"
});
const
noUnderline
=
createUtil
({
textDecoration
:
"none"
}); export { underline, lineThrough, noUnderline };