600,
+ 'has-dark-background':
+ backgroundColord.luminance() <= 0.5 &&
+ backgroundColord.alpha() !== 0,
+ } ) }
+ style={ {
+ background: backgroundColor,
+ } }
+ >
+ { resizeObserver }
+
+
+ examples.some(
+ ( example ) =>
+ example.category === category.slug
+ )
+ )
+ .map( ( category ) => ( {
+ name: category.slug,
+ title: category.title,
+ icon: category.icon,
+ } ) ) }
+ >
+ { ( tab ) => (
+
+ { examples
+ .filter(
+ ( example ) => example.category === tab.name
+ )
+ .map( ( example ) => (
+ {
+ onSelect( example.name );
+ } }
+ />
+ ) ) }
+
+ ) }
+
+
+