UNPKG
@sb1/ffe-core-react
Version:
latest (101.0.5)
101.0.5
101.0.4
101.0.3
101.0.2
101.0.1
101.0.0
100.12.4
100.12.3
100.12.2
100.12.1
100.12.0
100.11.0
100.10.1
100.10.0
100.9.0
100.8.3
100.8.2
100.8.1
100.8.0
100.7.1
100.7.0
100.6.1
100.6.0
100.5.2
100.5.1
100.5.0
100.4.3
100.4.2
100.4.1
100.4.0
100.3.1
100.3.0
100.2.1
100.2.0
100.1.1
100.1.0
100.0.4
100.0.3
100.0.0
10.1.14
10.1.13
10.1.12
10.1.11
10.1.10
10.1.9
10.1.8
10.1.7
10.1.6
10.1.5
10.1.4
10.1.3
10.1.2
10.1.1
10.1.0
10.0.4
10.0.3
10.0.2
10.0.1
10.0.0
9.1.25
9.1.24
9.1.23
9.1.22
9.1.21
9.1.20
9.1.19
9.1.18
9.1.17
9.1.16
9.1.15
9.1.14
9.1.13
9.1.12
9.1.11
9.1.10
9.1.9
9.1.8
9.1.7
9.1.6
9.1.5
9.1.4
9.1.3
9.1.2
9.1.1
9.1.0
9.0.7
9.0.6
9.0.5
9.0.4
9.0.3
9.0.2
9.0.1
9.0.0
8.1.6
8.1.5
8.1.4
8.1.3
8.1.2
8.1.1
8.1.0
8.0.4
8.0.3
8.0.2
8.0.1
8.0.0
7.2.11
7.2.10
7.2.9
7.2.8
7.2.7
7.2.6
7.2.5
7.2.4
7.2.3
7.2.2
7.2.1
7.2.0
7.1.5
7.1.4
7.1.3
7.1.2
7.1.1
7.1.0
7.0.3
7.0.2
7.0.1
7.0.0
6.1.0
6.0.1
6.0.0
5.0.3
5.0.2
5.0.1
5.0.0
4.3.0
4.2.11
4.2.10
4.2.9
4.2.8
4.2.7
4.2.6
4.2.5
4.2.4
4.2.3
4.2.2
4.2.1
4.2.0
4.1.3
4.1.2
4.1.1
4.1.0
4.0.0
3.3.0
3.2.6
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.0
3.0.0
2.0.3
2.0.2
2.0.1
2.0.0
React components for ffe-core components
github.com/SpareBank1/designsystem
SpareBank1/designsystem
@sb1/ffe-core-react
/
es
/
typography
/
StrongText.js
7 lines
(6 loc)
•
254 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
React
from
'react'
;
import
classNames
from
'classnames'
;
export
function
StrongText
(
props
) {
const
{ className, ...rest } = props;
return
(
React
.
createElement
(
"strong"
, {
className
:
classNames
(
'ffe-strong-text'
, className), ...rest })); }