30 lines
784 B
PHP
30 lines
784 B
PHP
<?php
|
|
/**
|
|
* @package php-svg-lib
|
|
* @link http://github.com/dompdf/php-svg-lib
|
|
* @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html
|
|
*
|
|
* Modified by wpovernight on 18-October-2024 using {@see https://github.com/BrianHenryIE/strauss}.
|
|
*/
|
|
|
|
namespace WPO\IPS\Vendor\Svg;
|
|
|
|
class DefaultStyle extends Style
|
|
{
|
|
public $color = [0, 0, 0, 1];
|
|
public $opacity = 1.0;
|
|
public $display = 'inline';
|
|
|
|
public $fill = [0, 0, 0, 1];
|
|
public $fillOpacity = 1.0;
|
|
public $fillRule = 'nonzero';
|
|
|
|
public $stroke = 'none';
|
|
public $strokeOpacity = 1.0;
|
|
public $strokeLinecap = 'butt';
|
|
public $strokeLinejoin = 'miter';
|
|
public $strokeMiterlimit = 4;
|
|
public $strokeWidth = 1.0;
|
|
public $strokeDasharray = 0;
|
|
public $strokeDashoffset = 0;
|
|
}
|