# code-snippets/3.10.2/js/components/common/icons/KebabIcon.tsx

Code Snippets, version 3.10.2. 10 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.10.2/code/js/components/common/icons/KebabIcon.tsx
- Raw: https://pluginprobe.com/plugins/code-snippets/3.10.2/raw/js/components/common/icons/KebabIcon.tsx
- Modified: 2026-08-24T09:37:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-snippets/3.10.2/code/js/components/common/icons/KebabIcon.tsx#L10-L20`.

```tsx
import React from 'react'
import type { SVGProps } from 'react'

export const KebabIcon: React.FC<SVGProps<SVGSVGElement>> = props =>
	<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
		<circle cx="9" cy="3.5" r="1.6" fill="currentColor" />
		<circle cx="9" cy="9" r="1.6" fill="currentColor" />
		<circle cx="9" cy="14.5" r="1.6" fill="currentColor" />
	</svg>

```
