Anatomy
Bone icon
Also known as: Knochen, Skelett · bone.svg
A long bone — the skeletal system and orthopedics. It suits ortho sections, musculoskeletal topics and anatomy.
OrthopedicsSkeletonMusculoskeletalAnatomy
Weight
PNG size
px
Exports use the selected weight and currentColor — they inherit your text color. Free for commercial & educational use, no attribution required.
Use the Bone icon in code
Paste it straight into your project. It uses currentColor, so it inherits your text color, and scales without blurring.
Inline SVG · HTML
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
stroke="currentColor" stroke-width="2" stroke-linejoin="miter" stroke-linecap="butt">
<path d="M16.5 12 A4.5 4.5 0 0 1 24 8.65 A4.5 4.5 0 0 1 31.5 12 A4.5 4.5 0 0 1 27 16.5 L27 31.5 A4.5 4.5 0 0 1 31.5 36 A4.5 4.5 0 0 1 24 39.35 A4.5 4.5 0 0 1 16.5 36 A4.5 4.5 0 0 1 21 31.5 L21 16.5 A4.5 4.5 0 0 1 16.5 12 Z"/>
</svg>React component · JSX
export function IconBone(props) {
return (
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
stroke="currentColor" strokeWidth={2} strokeLinejoin="miter" strokeLinecap="butt" {...props}>
<path d="M16.5 12 A4.5 4.5 0 0 1 24 8.65 A4.5 4.5 0 0 1 31.5 12 A4.5 4.5 0 0 1 27 16.5 L27 31.5 A4.5 4.5 0 0 1 31.5 36 A4.5 4.5 0 0 1 24 39.35 A4.5 4.5 0 0 1 16.5 36 A4.5 4.5 0 0 1 21 31.5 L21 16.5 A4.5 4.5 0 0 1 16.5 12 Z"/>
</svg>
);
}