Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

logo.blade.php 587B

1234567891011121314151617181920212223242526
  1. @props([
  2. 'shape' => 'square',
  3. 'size' => 'md',
  4. ])
  5. <img {{
  6. $attributes
  7. ->class([
  8. 'inv-logo object-contain',
  9. match ($size) {
  10. 'sm' => 'max-h-8',
  11. 'md' => 'max-h-16',
  12. 'lg' => 'max-h-24',
  13. 'xl' => 'max-h-32',
  14. default => $size,
  15. },
  16. match ($shape) {
  17. 'square' => 'rounded-none',
  18. 'rounded' => 'rounded-md',
  19. 'circle' => 'rounded-full',
  20. default => $shape,
  21. },
  22. ])
  23. }}
  24. />