From 95bd0a5e52bba80cd092cda38788148f7ef4684d Mon Sep 17 00:00:00 2001 From: Ryan Brooks Date: Fri, 25 Jul 2025 17:25:07 -0700 Subject: [PATCH] Clarify graph icon names --- static/app/icons/icons.stories.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/app/icons/icons.stories.tsx b/static/app/icons/icons.stories.tsx index 9a15d0e18ad08f..7a18aedff04356 100644 --- a/static/app/icons/icons.stories.tsx +++ b/static/app/icons/icons.stories.tsx @@ -1136,28 +1136,28 @@ const SECTIONS: TSection[] = [ }, { id: 'graph-type-circle', - name: 'Graph', + name: 'GraphCircle', defaultProps: { type: 'circle', }, }, { id: 'graph-type-bar', - name: 'Graph', + name: 'GraphBar', defaultProps: { type: 'bar', }, }, { id: 'graph-type-area', - name: 'Graph', + name: 'GraphArea', defaultProps: { type: 'area', }, }, { id: 'graph-type-scatter', - name: 'Graph', + name: 'GraphScatter', defaultProps: { type: 'scatter', },