(icon)
| 692 | IllustrationContext, |
| 693 | { |
| 694 | render(icon) { |
| 695 | return ( |
| 696 | <SkeletonWrapper> |
| 697 | <div |
| 698 | className={style({ |
| 699 | display: 'flex', |
| 700 | alignItems: 'center', |
| 701 | justifyContent: 'center', |
| 702 | backgroundColor: 'gray-100', |
| 703 | aspectRatio: 'square' |
| 704 | })}> |
| 705 | {icon} |
| 706 | </div> |
| 707 | </SkeletonWrapper> |
| 708 | ); |
| 709 | }, |
| 710 | styles: style({ |
| 711 | height: 'auto', |
| 712 | maxSize: 160, |
no outgoing calls
no test coverage detected