composer package updates
[openemr.git] / vendor / phenx / php-svg-lib / src / Svg / DefaultStyle.php
blobc0535c7269efaaca39726abb9325ae53f6e78583
1 <?php
2 /**
3 * @package php-svg-lib
4 * @link http://github.com/PhenX/php-svg-lib
5 * @author Fabien Ménager <fabien.menager@gmail.com>
6 * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html
7 */
9 namespace Svg;
11 class DefaultStyle extends Style
13 public $color = '';
14 public $opacity = 1.0;
15 public $display = 'inline';
17 public $fill = 'black';
18 public $fillOpacity = 1.0;
19 public $fillRule = 'nonzero';
21 public $stroke = 'none';
22 public $strokeOpacity = 1.0;
23 public $strokeLinecap = 'butt';
24 public $strokeLinejoin = 'miter';
25 public $strokeMiterlimit = 4;
26 public $strokeWidth = 1.0;
27 public $strokeDasharray = 0;
28 public $strokeDashoffset = 0;