from spb import *
graphics(
    arrow_3d((0, 0, 0), (1, 0, 0)),
    arrow_3d((0, 0, 0), (0, 1, 0)),
    arrow_3d((0, 0, 0), (0, 0, 1), show_in_legend=False,
             rendering_kw={
                 "mutation_scale": 20,
                 "arrowstyle": "-|>",
                 "linestyle": 'dashed',
             }),
    xlabel="x", ylabel="y", zlabel="z")
# Expected:
## Plot object containing:
## [0]: 3D arrow from [0. 0. 0.] to [1. 0. 0.]
## [1]: 3D arrow from [0. 0. 0.] to [0. 1. 0.]
## [2]: 3D arrow from [0. 0. 0.] to [0. 0. 1.]
