Skip to content

Commit

Permalink
client: Add startIcon to New Model button
Browse files Browse the repository at this point in the history
  • Loading branch information
thomageanderson committed Feb 12, 2023
1 parent 560b027 commit 95d911d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { useNavigate } from 'react-router-dom'
import { html as CompletionInstructions } from './instructions.md'
import { Box, Typography } from '@mui/material'
import InfoCard from '../components/InfoCard'
import AddCircleOutlineIcon from '@mui/icons-material/AddCircleOutline'

export default function ClassificationList() {
const navigate = useNavigate()
Expand All @@ -32,6 +33,7 @@ export default function ClassificationList() {
size="small"
variant="contained"
onClick={() => navigate('/fineTuneManager/fine-tunes/new')}
startIcon={<AddCircleOutlineIcon />}
>
New Model
</Button>
Expand Down

0 comments on commit 95d911d

Please sign in to comment.