@symbo.ls/doublehr 2.11.132
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +26 -0
- package/package.json +11 -0
package/index.js
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
import { Flex } from '@symbo.ls/atoms'
|
4
|
+
|
5
|
+
export const DoubleHr = {
|
6
|
+
extend: Flex,
|
7
|
+
props: {
|
8
|
+
gap: 'B',
|
9
|
+
fontSize: 'Z1',
|
10
|
+
fontWeight: '500',
|
11
|
+
alignItems: 'center',
|
12
|
+
':before': {
|
13
|
+
content: '""',
|
14
|
+
height: 'V',
|
15
|
+
flex: '1',
|
16
|
+
background: 'gray3'
|
17
|
+
},
|
18
|
+
text: 'Or',
|
19
|
+
':after': {
|
20
|
+
content: '""',
|
21
|
+
height: 'V',
|
22
|
+
flex: '1',
|
23
|
+
background: 'gray3'
|
24
|
+
}
|
25
|
+
}
|
26
|
+
}
|
package/package.json
ADDED