1
2
3
4
5
6
7
8
9
use crate::*;

create_web_container!(Optgroup);
impl_web_container!(Optgroup "optgroup");

impl Optgroup {
    generate_pub_bool_attr!(disabled);
    generate_pub_attr!(label);
}