{-# LANGUAGE OverloadedStrings #-}
module Miso.Svg.Element
(
svg_
, circle_
, ellipse_
, image_
, line_
, path_
, polygon_
, polyline_
, rect_
, use_
, animate_
, animateMotion_
, animateTransform_
, mpath_
, set_
, desc_
, metadata_
, title_
, defs_
, g_
, marker_
, mask_
, pattern_
, switch_
, symbol_
, textPath_
, text_
, tspan_
, linearGradient_
, radialGradient_
, stop_
, feBlend_
, feColorMatrix_
, feComponentTransfer_
, feComposite_
, feConvolveMatrix_
, feDiffuseLighting_
, feDisplacementMap_
, feDropShadow_
, feFlood_
, feFuncA_
, feFuncB_
, feFuncG_
, feFuncR_
, feGaussianBlur_
, feImage_
, feMerge_
, feMergeNode_
, feMorphology_
, feOffset_
, feSpecularLighting_
, feTile_
, feTurbulence_
, feDistantLight_
, fePointLight_
, feSpotLight_
, foreignObject_
, clipPath_
, filter_
, script_
, style_
, view_
) where
import Miso.Types hiding (text_)
nodeSvg :: MisoString -> [Attribute action] -> [View model action] -> View model action
nodeSvg :: forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
nodeName = NS
-> MisoString
-> [Attribute action]
-> [View model action]
-> View model action
forall action model.
NS
-> MisoString
-> [Attribute action]
-> [View model action]
-> View model action
node NS
SVG MisoString
nodeName
svg_ :: [Attribute action] -> [View model action] -> View model action
svg_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
svg_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"svg"
foreignObject_ :: [Attribute action] -> [View model action] -> View model action
foreignObject_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
foreignObject_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"foreignObject"
circle_ :: [Attribute action] -> View model action
circle_ :: forall action model. [Attribute action] -> View model action
circle_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"circle") []
ellipse_ :: [Attribute action] -> View model action
ellipse_ :: forall action model. [Attribute action] -> View model action
ellipse_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"ellipse") []
image_ :: [Attribute action] -> View model action
image_ :: forall action model. [Attribute action] -> View model action
image_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"image") []
line_ :: [Attribute action] -> View model action
line_ :: forall action model. [Attribute action] -> View model action
line_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"line") []
path_ :: [Attribute action] -> View model action
path_ :: forall action model. [Attribute action] -> View model action
path_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"path") []
polygon_ :: [Attribute action] -> View model action
polygon_ :: forall action model. [Attribute action] -> View model action
polygon_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"polygon") []
polyline_ :: [Attribute action] -> View model action
polyline_ :: forall action model. [Attribute action] -> View model action
polyline_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"polyline") []
rect_ :: [Attribute action] -> View model action
rect_ :: forall action model. [Attribute action] -> View model action
rect_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"rect") []
use_ :: [Attribute action] -> View model action
use_ :: forall action model. [Attribute action] -> View model action
use_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"use") []
animate_ :: [Attribute action] -> View model action
animate_ :: forall action model. [Attribute action] -> View model action
animate_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"animate") []
animateMotion_ :: [Attribute action] -> View model action
animateMotion_ :: forall action model. [Attribute action] -> View model action
animateMotion_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"animateMotion") []
animateTransform_ :: [Attribute action] -> View model action
animateTransform_ :: forall action model. [Attribute action] -> View model action
animateTransform_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"animateTransform") []
mpath_ :: [Attribute action] -> View model action
mpath_ :: forall action model. [Attribute action] -> View model action
mpath_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"mpath") []
set_ :: [Attribute action] -> View model action
set_ :: forall action model. [Attribute action] -> View model action
set_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"set") []
desc_ :: [Attribute action] -> [View model action] -> View model action
desc_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
desc_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"desc"
metadata_ :: [Attribute action] -> [View model action] -> View model action
metadata_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
metadata_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"metadata"
title_ :: [Attribute action] -> [View model action] -> View model action
title_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
title_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"title"
defs_ :: [Attribute action] -> [View model action] -> View model action
defs_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
defs_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"defs"
g_ :: [Attribute action] -> [View model action] -> View model action
g_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
g_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"g"
marker_ :: [Attribute action] -> [View model action] -> View model action
marker_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
marker_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"marker"
mask_ :: [Attribute action] -> [View model action] -> View model action
mask_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
mask_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"mask"
pattern_ :: [Attribute action] -> [View model action] -> View model action
pattern_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
pattern_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"pattern"
switch_ :: [Attribute action] -> [View model action] -> View model action
switch_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
switch_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"switch"
symbol_ :: [Attribute action] -> [View model action] -> View model action
symbol_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
symbol_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"symbol"
textPath_ :: [Attribute action] -> [View model action] -> View model action
textPath_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
textPath_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"textPath"
text_ :: [Attribute action] -> [View model action] -> View model action
text_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
text_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"text"
tspan_ :: [Attribute action] -> [View model action] -> View model action
tspan_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
tspan_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"tspan"
linearGradient_ :: [Attribute action] -> [View model action] -> View model action
linearGradient_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
linearGradient_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"linearGradient"
radialGradient_ :: [Attribute action] -> [View model action] -> View model action
radialGradient_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
radialGradient_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"radialGradient"
stop_ :: [Attribute action] -> View model action
stop_ :: forall action model. [Attribute action] -> View model action
stop_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"stop") []
feBlend_ :: [Attribute action] -> View model action
feBlend_ :: forall action model. [Attribute action] -> View model action
feBlend_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feBlend") []
feColorMatrix_ :: [Attribute action] -> View model action
feColorMatrix_ :: forall action model. [Attribute action] -> View model action
feColorMatrix_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feColorMatrix") []
feComponentTransfer_ :: [Attribute action] -> [View model action] -> View model action
feComponentTransfer_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
feComponentTransfer_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feComponentTransfer"
feComposite_ :: [Attribute action] -> View model action
feComposite_ :: forall action model. [Attribute action] -> View model action
feComposite_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feComposite") []
feConvolveMatrix_ :: [Attribute action] -> View model action
feConvolveMatrix_ :: forall action model. [Attribute action] -> View model action
feConvolveMatrix_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feConvolveMatrix") []
feDiffuseLighting_ :: [Attribute action] -> [View model action] -> View model action
feDiffuseLighting_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
feDiffuseLighting_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feDiffuseLighting"
feDisplacementMap_ :: [Attribute action] -> View model action
feDisplacementMap_ :: forall action model. [Attribute action] -> View model action
feDisplacementMap_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feDisplacementMap") []
feDropShadow_ :: [Attribute action] -> View model action
feDropShadow_ :: forall action model. [Attribute action] -> View model action
feDropShadow_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feDropShadow") []
feFlood_ :: [Attribute action] -> View model action
feFlood_ :: forall action model. [Attribute action] -> View model action
feFlood_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feFlood") []
feFuncA_ :: [Attribute action] -> [View model action] -> View model action
feFuncA_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
feFuncA_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feFuncA"
feFuncB_ :: [Attribute action] -> [View model action] -> View model action
feFuncB_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
feFuncB_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feFuncB"
feFuncG_ :: [Attribute action] -> [View model action] -> View model action
feFuncG_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
feFuncG_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feFuncG"
feFuncR_ :: [Attribute action] -> [View model action] -> View model action
feFuncR_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
feFuncR_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feFuncR"
feGaussianBlur_ :: [Attribute action] -> View model action
feGaussianBlur_ :: forall action model. [Attribute action] -> View model action
feGaussianBlur_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feGaussianBlur") []
feImage_ :: [Attribute action] -> View model action
feImage_ :: forall action model. [Attribute action] -> View model action
feImage_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feImage") []
feMerge_ :: [Attribute action] -> [View model action] -> View model action
feMerge_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
feMerge_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feMerge"
feMergeNode_ :: [Attribute action] -> View model action
feMergeNode_ :: forall action model. [Attribute action] -> View model action
feMergeNode_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feMergeNode") []
feMorphology_ :: [Attribute action] -> View model action
feMorphology_ :: forall action model. [Attribute action] -> View model action
feMorphology_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feMorphology") []
feOffset_ :: [Attribute action] -> View model action
feOffset_ :: forall action model. [Attribute action] -> View model action
feOffset_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feOffset") []
feSpecularLighting_ :: [Attribute action] -> [View model action] -> View model action
feSpecularLighting_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
feSpecularLighting_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feSpecularLighting"
feTile_ :: [Attribute action] -> View model action
feTile_ :: forall action model. [Attribute action] -> View model action
feTile_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feTile") []
feTurbulence_ :: [Attribute action] -> View model action
feTurbulence_ :: forall action model. [Attribute action] -> View model action
feTurbulence_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feTurbulence") []
feDistantLight_ :: [Attribute action] -> [View model action] -> View model action
feDistantLight_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
feDistantLight_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feDistantLight"
fePointLight_ :: [Attribute action] -> View model action
fePointLight_ :: forall action model. [Attribute action] -> View model action
fePointLight_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"fePointLight") []
feSpotLight_ :: [Attribute action] -> View model action
feSpotLight_ :: forall action model. [Attribute action] -> View model action
feSpotLight_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"feSpotLight") []
clipPath_ :: [Attribute action] -> [View model action] -> View model action
clipPath_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
clipPath_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"clipPath"
filter_ :: [Attribute action] -> [View model action] -> View model action
filter_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
filter_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"filter"
script_ :: [Attribute action] -> [View model action] -> View model action
script_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
script_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"script"
style_ :: [Attribute action] -> [View model action] -> View model action
style_ :: forall action model.
[Attribute action] -> [View model action] -> View model action
style_ = MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"style"
view_ :: [Attribute action] -> View model action
view_ :: forall action model. [Attribute action] -> View model action
view_ = ([Attribute action] -> [View model action] -> View model action)
-> [View model action] -> [Attribute action] -> View model action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString
-> [Attribute action] -> [View model action] -> View model action
forall action model.
MisoString
-> [Attribute action] -> [View model action] -> View model action
nodeSvg MisoString
"view") []