ui: fix icon naming
This commit is contained in:
parent
22502e7467
commit
4d453be279
3 changed files with 19 additions and 1 deletions
18
frontend/app/components/ui/Icons/play_new.tsx
Normal file
18
frontend/app/components/ui/Icons/play_new.tsx
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Play_new(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 37 36" fill="none" width={ `${ width }px` } height={ `${ height }px` } ><rect x=".663" width="36" height="36" rx="18" fill="#E2E4FD"/><path d="M24.851 16.358a2 2 0 0 1 0 3.284l-7.323 5.09c-1.326.922-3.141-.027-3.141-1.642V12.91c0-1.615 1.815-2.564 3.141-1.643l7.323 5.09Z" fill="#394DFE"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
export default Play_new;
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 398 B After Width: | Height: | Size: 398 B |
Loading…
Add table
Reference in a new issue