Skip to content

Commit 06ae6c1

Browse files
committed
Release 0.3.2
1 parent 9c3dd81 commit 06ae6c1

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
---
88

9+
## [0.3.2](https://github.com/FortAwesome/react-native-fontawesome/releases/tag/0.3.2) - 2024-05-23
10+
11+
### Fixed
12+
13+
- Props with nullable/undefined values no longer throw an error
14+
15+
---
16+
917
## [0.3.1](https://github.com/FortAwesome/react-native-fontawesome/releases/tag/0.3.1) - 2024-05-16
1018

1119
### Changed

dist/components/FontAwesomeIcon.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function FontAwesomeIcon(props) {
109109

110110
var _abstract = renderedIcon["abstract"]; // This is the color that will be passed to the "fill" prop of the Svg element
111111

112-
var color = _props.color || style.color || DEFAULT_COLOR; // This is the color that will be passed to the "fill" prop of the secondary Path element child (in Duotone Icons)
112+
var color = _props.color || (style || {}).color || DEFAULT_COLOR; // This is the color that will be passed to the "fill" prop of the secondary Path element child (in Duotone Icons)
113113
// `null` value will result in using the primary color, at 40% opacity
114114

115115
var secondaryColor = _props.secondaryColor || color; // Secondary layer opacity should default to 0.4, unless a specific opacity value or a specific secondary color was given
@@ -118,8 +118,9 @@ function FontAwesomeIcon(props) {
118118
// or resolved in other ways, to avoid ambiguity as to which inputs cause which outputs in the underlying rendering process.
119119
// In other words, we don't want color (for example) to be specified via two different inputs.
120120

121-
var styleColor = style.color,
122-
modifiedStyle = _objectWithoutProperties(style, _excluded);
121+
var _ref2 = style || {},
122+
styleColor = _ref2.color,
123+
modifiedStyle = _objectWithoutProperties(_ref2, _excluded);
123124

124125
var resolvedHeight, resolvedWidth;
125126

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fortawesome/react-native-fontawesome",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "Official React Native component for Font Awesome",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)