/home/smartonegroup/public_html/system/vendor/spatie/ray/src/Concerns/RaySizes.php
<?php

namespace Spatie\Ray\Concerns;

/** @mixin \Spatie\Ray\Ray */
trait RaySizes
{
    public function small(): self
    {
        return $this->size('sm');
    }

    public function large(): self
    {
        return $this->size('lg');
    }
}