bnomei/kirby-blueprints

View on GitHub
classes/Blueprints/Attributes/Width.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bnomei\Blueprints\Attributes;

use Attribute;

#[Attribute(Attribute::TARGET_PROPERTY)]
class Width extends GenericAttribute
{
    /**
     * The width of the field in the field grid. Available widths: 1/1, 1/2, 1/3, 1/4, 2/3, 3/4
     */
    public function __construct(
        public float|string $width = '1/1'
    ) {}
}