-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
const IconHome: FunctionComponent<Props> = ({ size, color, style: _style, ...rest }) => <svg />
IconHome.defaultProps = { size: 16, };
现在react对defaultProps会报warning,在控制台会看到一片红,可以使用以下方式优化吗
const IconHome: FunctionComponent<Props> = ({ size = 16, color, style: _style, ...rest }) => <svg />
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels