File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/@react-spectrum/s2/ui-icons Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 10
10
* governing permissions and limitations under the License.
11
11
*/
12
12
13
+ import S2_DashSize50 from './S2_DashSize50.svg' ;
13
14
import S2_DashSize75 from './S2_DashSize75.svg' ;
14
15
import S2_DashSize100 from './S2_DashSize100.svg' ;
15
16
import S2_DashSize200 from './S2_DashSize200.svg' ;
16
- import S2_DashSize300 from './S2_DashSize300.svg' ;
17
17
import { SVGProps } from 'react' ;
18
18
19
19
export default function Dash ( { size, ...props } : { size : 'S' | 'M' | 'L' | 'XL' } & SVGProps < SVGSVGElement > ) {
20
20
switch ( size ) {
21
21
case 'S' :
22
- return < S2_DashSize75 { ...props } /> ;
22
+ return < S2_DashSize50 { ...props } /> ;
23
23
case 'M' :
24
- return < S2_DashSize100 { ...props } /> ;
24
+ return < S2_DashSize75 { ...props } /> ;
25
25
case 'L' :
26
- return < S2_DashSize200 { ...props } /> ;
26
+ return < S2_DashSize100 { ...props } /> ;
27
27
case 'XL' :
28
- return < S2_DashSize300 { ...props } /> ;
28
+ return < S2_DashSize200 { ...props } /> ;
29
29
}
30
30
}
You can’t perform that action at this time.
0 commit comments